In response to: Update on Morfeus Fucking Scanner
Comment from: Another Visitor

If you guys are using nginx (EngineX) instead of Apache (slowpache) you can add this directive to your main server config and / or vhost include files.
if ($http_user_agent ~* (Baiduspider|Jullo|Morfeus) ) {
return 444;server {
listen 80 default;
server_name _;
if ($http_user_agent ~* (Baiduspider|Jullo|Morfeus) ) {
return 444;
}
access_log /usr/local/www/data/_default/access_default.log;
server_name_in_redirect off;
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/www/data/_default$fastcgi_script_name;
include fastcgi_params;
}
location / {
index index.php index.html;
root /usr/local/www/data/_default;
error_page 404 error/404.html;
}
}
As in the following "default" example (for anything that doesn't match any of my served domains):