casablanca.cz
i am being hit massively from someone or some bot with this thing. can't ping it. deny from casablanca.cz does not help in htaccess. what to do what to do?
casablanca.cz
i am being hit massively from someone or some bot with this thing. can't ping it. deny from casablanca.cz does not help in htaccess. what to do what to do?
Would help if you posted what exactly you're using in the way of plugins etc. to contain spam....
i am talkin about refer spam! which means some kind of bot or program is leaving a lot of links in my referral lists...
Plugins to the rescue!
http://blog.taragana.com/index.php/archive/wordpress-plugin-angsumans-referrer-bouncer/
that plugin blows.. (no offense, but it doesnt work) a hardened .htaccess and perhaps, bad behaviour, is the only way to deter referer spam.
Someone help me understand what referrer spam is or does?
blows as in? :O)
is it a good thing?
referer spam is is when people hit your site, and the referring page (the page that they supposedly came from) is a spam page.
By default, apache logs referers. Therefore most stats programs, like webstats or awstats also track referers.
The goal is is to show up in those stats, and hopefully have the stats be publically viewable somewhere.
Sushubh - blows is slang (Americanized) for "isn't any good at all"....
(In Texas, this is AKA "sucks rocks through a straw".)
Ah, thanks Whooami. So they're banking on showing up in the /reports/report.html that analog spits out and then getting indexed by a spider?
Sneaky. Clever! Ok, gotcha.
I can give you a great list of .tld's to block via .htaccess that will help immensely :
RewriteCond %{HTTP_REFERER} \.by [NC,OR]
RewriteCond %{HTTP_REFERER} \.su [NC,OR]
RewriteCond %{HTTP_REFERER} \.to [NC,OR]
RewriteCond %{HTTP_REFERER} \.ru [NC,OR]
RewriteCond %{HTTP_REFERER} \.us [NC,OR]
RewriteCond %{HTTP_REFERER} \.tf [NC,OR]
RewriteCond %{HTTP_REFERER} \.info [NC,OR]
RewriteCond %{HTTP_REFERER} \.cz [NC]
RewriteRule ^(.*) %{HTTP_REFERER} [R=301,L]
This topic has been closed to new replies.