Earlier quoted context omitted.
Maybe the barrier to posting a comment should be low if you don't have a hyperlink but if you include one then you have to jump through some hoops (captcha's, etc).
I implemented that with some success. Much more successful was to simply require Javascript.
How to beat comment spam
61–70 of 107 posts
Re: How to beat comment spam
#62Re: How to beat comment spam
#63Earlier quoted context omitted.
I implemented that with some success. Much more successful was to simply require Javascript.
Interesting. Why do the bots run with JS turned off?
Re: How to beat comment spam
#64You accept comment submission via GET requests? I may not have reverse engineered it fully, but something like this will allow me to post images around the internet that actually create comments on your site by the IP of the visitor. http://dendory.net/blog.php?id=5078058e&cn=Kudos&cp=... />
Re: How to beat comment spam
#65Re: How to beat comment spam
#66You accept comment submission via GET requests? I may not have reverse engineered it fully, but something like this will allow me to post images around the internet that actually create comments on your site by the IP of the visitor. http://dendory.net/blog.php?id=5078058e&cn=Kudos&cp=... />
You can do that with POST too if the site doesn't have CSRF protection ;)
Re: How to beat comment spam
#67Earlier quoted context omitted.
You can do that with POST too if the site doesn't have CSRF protection ;)
You cannot do it in drive-by format like you can with a GET. It's passive and can be posted almost anywhere, message boards, email, Facebook.
Re: How to beat comment spam
#68You accept comment submission via GET requests? I may not have reverse engineered it fully, but something like this will allow me to post images around the internet that actually create comments on your site by the IP of the visitor. http://dendory.net/blog.php?id=5078058e&cn=Kudos&cp=... />
Step 2: Google, Bing, and others index my site
Step 3: Every bot that crawls my site is now a spambot
Re: How to beat comment spam
#69Earlier quoted context omitted.
You can do that with POST too if the site doesn't have CSRF protection ;)
You cannot do it in drive-by format like you can with a GET. It's passive and can be posted almost anywhere, message boards, email, Facebook.
Re: How to beat comment spam
#70I recently set up a WP site and forum for a product my brothers are trying to sell. We're not allowing commenting on WP, but obviously have to allow people to post on the forum. The forum software offered a couple of (unofficial) anti-spam plugins, but they were not effective at all. Decided to try re-captcha, but found that to be equally ineffective (hadn't read about just how broken re-captcha is until this inciden…