I saw this tip on another web site. I noticed in my raw logs that random IPs are trying queries with a common query string of adodb. I figure this is some sort of SQL injecting hack attempt? Anyway, I am going to try something like this in my .htaccess file. Is this very resource intensive?
RewriteEngine On # Block access when 'custompluginfile' in querystring
RewriteCond %{QUERY_STRING} .*custompluginfile.* [NC]
RewriteRule ^(.*)$ $1 [F,L]