Forum Moderators: phranque
64.57.64.43 - - [03/Sep/2004:10:24:56 -0400] "GET / HTTP/1.0" 200 13392 "http://weight-loss-pills.boom.ru" "Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt)"
64.57.64.43 - - [03/Sep/2004:10:24:56 -0400] "GET / HTTP/1.0" 200 13392 "http://cheap-diet-pills.boom.ru" "Mozilla/4.0 (compatible; MSIE 5.0; Windows 95; DigExt)"
64.57.64.43 - - [03/Sep/2004:10:24:56 -0400] "GET / HTTP/1.0" 200 13392 "http://prescription-diet-pills.boom.ru" "Mozilla/4.7 [en] (Win98; I)"
64.57.64.43 - - [03/Sep/2004:10:24:56 -0400] "GET / HTTP/1.0" 200 13392 "http://diet-pills-online.boom.ru" "Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)"
64.57.64.43 - - [03/Sep/2004:10:24:56 -0400] "GET / HTTP/1.0" 200 13392 "http://propolene-diet-pills.boom.ru" "Mozilla/4.0 (compatible; MSIE 5.5; Windows 98; Win 9x 4.90)"
64.57.64.43 - - [03/Sep/2004:10:24:56 -0400] "GET / HTTP/1.0" 200 13392 "http://ephedra-diet-pills.boom.ru" "Mozilla/4.0 (compatible; MSIE 5.0; Windows 95; DigExt)"
-------------------------------------
I did the .htaccess like this:
<Directory "/var/www/html">
Order Allow,Deny
Allow from all
Deny from 64.57.64
</Directory>
but that has not stopped the perp.
I would redirect, but it does not appear that he is hitting a particular page.
Please help the newbie.
(Also, I did not see this on other boards, but apologize if I accessed the wrong one.)
Thank you.
This will just give them an access denied message.
order allow,deny
deny from 64.57.64.43
allow from all
This one will redirect them were ever you want.
RewriteCond %{REMOTE_ADDR} ^64.57.64.43$
RewriteRule .*$ http://www.example.com [R]
Put it in your base directory .htaccess file and it will not matter what page they hit.