LawsHosting
Verified User
Offtopic regarding DA.....but......
I have a directory website, and 2 days ago I noticed 1,000's of submissions, which, to my knowledge is some sort of automatic submission software.
So I look at the logs to find that its from The Planet:
....however, I blocked the IP range for them:
that didnt work (why?), so I did a whois for those hostnames, and found they have different ip's i.e 29.c6.7bae.static.theplanet.com = 208.187.80.135 ......
My question is this, why didn't blocking *.theplanet.com work?
As a temp measure, I had to use:
I know its a crude way......I'll add a captcha in due course.
Any insights?
I have a directory website, and 2 days ago I noticed 1,000's of submissions, which, to my knowledge is some sort of automatic submission software.
So I look at the logs to find that its from The Planet:
29.c6.7bae.static.theplanet.com - - [16/Feb/2010:21:48:20 +0000] "POST /blah HTTP/1.1" 302 396 "-" "-"
f4.c1.7bae.static.theplanet.com - - [16/Feb/2010:21:48:22 +0000] "POST /blah HTTP/1.1" 302 396 "-" "-"
ed.c3.7bae.static.theplanet.com - - [16/Feb/2010:21:48:23 +0000] "POST /blah HTTP/1.1" 302 396 "-" "-"
.....
like 100's of random hostnames
....however, I blocked the IP range for them:
deny from 174.120.0.0 - 174.123.255.255
and
deny from *.theplanet.com
that didnt work (why?), so I did a whois for those hostnames, and found they have different ip's i.e 29.c6.7bae.static.theplanet.com = 208.187.80.135 ......
My question is this, why didn't blocking *.theplanet.com work?
As a temp measure, I had to use:
PHP:
if ($_SERVER['HTTP_REFERER'] == "") {
inl_header("http://www.spam.com");
exit();
}
Any insights?