Posts Tagged ‘DigiExt’

Vunerability Scanning

Posted in Technical on November 17th, 2010 by iyoung – Be the first to comment

This is far from comprehensive, but if you are getting an awful lot of HEAD requests in your Apache logs from odd user agents, such as the “Morpheus F’ing Scanner” or such, then the following ReWrite rules might be useful for black holing them.
[code]
RewriteCond %{HTTP_USER_AGENT} ^Morfeus
RewriteRule ^.*$ - [F]
RewriteCond %{HTTP_USER_AGENT} ^.*DigiExt
RewriteRule ^.*$ - [F]
[/code]