13 lines
626 B
ApacheConf
13 lines
626 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
RewriteCond %{QUERY_STRING} (\"|%22).*(<|>|%3) [NC,OR]
|
|
RewriteCond %{QUERY_STRING} (javascript:).*(\;) [NC,OR]
|
|
RewriteCond %{QUERY_STRING} (<|%3C).*script.*(>|%3) [NC,OR]
|
|
RewriteCond %{QUERY_STRING} (\|\.\./|`|='$|=%27$) [NC,OR]
|
|
RewriteCond %{QUERY_STRING} (\;|'|\"|%22).*(union|select|insert|drop|update|md5|benchmark|or|and|if) [NC,OR]
|
|
RewriteCond %{QUERY_STRING} (base64_encode|localhost|mosconfig) [NC,OR]
|
|
RewriteCond %{QUERY_STRING} (boot\.ini|echo.*kae|etc/passwd) [NC,OR]
|
|
RewriteCond %{QUERY_STRING} (GLOBALS|REQUEST)(=|\[|%) [NC]
|
|
RewriteRule .* - [F]
|
|
</IfModule> |