Forum Moderators: open
butterfly.europeonline.net laurel.europeonline.net hardy.europeonline.net heromaster.europeonline.net
All show a browser of Pro/1.29.
I would assume they were spiders, due to the large number of pages they fetched, but one of them shows an external referrer, which I've never seen on a spider before...
So are these a nifty referrer-giving spider, or does our website have a HUGE fan in Europe somewhere?
"...Launch up to ten simultaneous retrieval threads, access password-protected sites, filter files by size and type, search for keywords, and much more..."
SetEnvIf User-Agent ^Pro/1.29
<Directory /docroot>
Order Allow,Deny
Allow from=all
Deny from env=Pro/1.29
</Directory>
Replace "docroot" with your own directory name.
<Limit GET PUT POST>
order deny,allow
deny from a.certain.specific.ip
</Limit>
Options -Indexes
ErrorDocument 401 /error.php
ErrorDocument 403 /error.php
ErrorDocument 404 /error.php
ErrorDocument 500 /error.php
<Files .*>
Deny from all
</Files>
<edit>Actually the error i get in my log is 'Missing envariable expression for SetEnvIf'
</edit>
SetEnvIf User-Agent ^Pro/1.29 Pro/1.29
<Directory /docroot>
Order Allow,Deny
Allow from=all
Deny from env=Pro/1.29
</Directory>
I've tried adding this to my .htaccess above the original code, and at the bottom. Still locks me out.
I've tried with /docroot and /docroot/ and it still locks me out (with my docroot in place of docroot)
I get a 500 error.
Hmmm.
I'm looking over this page: [httpd.apache.org...] as we speak.
SetEnvIf User-Agent ^Pro/1.29 banned_bot
<Directory /docroot>
Order Allow,Deny
Allow from all
Deny from env=banned_bot
</Directory>