protected static function FileSecurity::htaccessPreventExecution in Drupal 8
Same name in this branch
- 8 composer/Plugin/VendorHardening/FileSecurity.php \Drupal\Composer\Plugin\VendorHardening\FileSecurity::htaccessPreventExecution()
- 8 core/lib/Drupal/Component/FileSecurity/FileSecurity.php \Drupal\Component\FileSecurity\FileSecurity::htaccessPreventExecution()
Same name and namespace in other branches
- 9 composer/Plugin/VendorHardening/FileSecurity.php \Drupal\Composer\Plugin\VendorHardening\FileSecurity::htaccessPreventExecution()
- 10 composer/Plugin/VendorHardening/FileSecurity.php \Drupal\Composer\Plugin\VendorHardening\FileSecurity::htaccessPreventExecution()
Returns htaccess directives to deny execution in a given directory.
Return value
string Apache htaccess directives to prevent execution of files in a location.
1 call to FileSecurity::htaccessPreventExecution()
- FileSecurity::htaccessLines in composer/
Plugin/ VendorHardening/ FileSecurity.php - Returns the standard .htaccess lines that Drupal writes.
File
- composer/
Plugin/ VendorHardening/ FileSecurity.php, line 64
Class
- FileSecurity
- Provides file security functions.
Namespace
Drupal\Composer\Plugin\VendorHardeningCode
protected static function htaccessPreventExecution() {
return <<<EOF
# Turn off all options we don't need.
Options -Indexes -ExecCGI -Includes -MultiViews
# Set the catch-all handler to prevent scripts from being executed.
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
<Files *>
# Override the handler again if we're run later in the evaluation list.
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
</Files>
# If we know how to do it safely, disable the PHP engine entirely.
<IfModule mod_php7.c>
php_flag engine off
</IfModule>
EOF;
}