Created
February 3, 2012 23:50
-
-
Save unix7/1733822 to your computer and use it in GitHub Desktop.
.htaccess - Prevent Script Injection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Options +FollowSymLinks | |
RewriteEngine On | |
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR] | |
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR] | |
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2}) | |
RewriteRule ^(.*)$ index.php [F,L] | |
//Source: http://wp.smashingmagazine.com/2010/07/01/10-useful-wordpress-security-tweaks/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment