I got rid of the last OR and it works fine. Here's the final for anyone getting blasted:
Code:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/qwerty$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/w00tw00t.at.blackhats.romanian.anti-sec:$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/w00tw00t.at.blackhats.romanian.anti-sec$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/w00tw00t.at.ISC.SANS.DFind:$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/MyAdmin$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/phpmyadmin$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/mysql$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/mysqladmin$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/admin$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/db$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/dbadmin$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/pma$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/scripts$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/sqlweb$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/web$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/webadmin$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/webdb$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/websql$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/htdocs$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/webdav$ [NC]
RewriteRule ^/.* http://%{REMOTE_ADDR}/ [L]
</IfModule>
I may set an ENV to track these for a while, but all I want the hackers to do, at this point, is go pack'in.
Bookmarks