Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My Ruby on Rails blog application is getting a lot of comment spam for a particular blog post even though comments are closed and the comment form is no longer there. The comments are filtered by Akismet so they're not visible, but I'm not sure how my app should best respond to these requests.

I thought about simply redirecting to the post page, or responding with an HTTP 404 or perhaps a 422. What do you think is the best course of action?

share|improve this question

5 Answers

up vote 3 down vote accepted

If your only goal is to thwart attempted spammers, any error result code would be fine. The spammer software isn't going to even look at it anyway.

share|improve this answer

Make your action like action="/some-strange-post-address-41345234523-something" And add action attribute using javascript.

Most of spammers do not run javascript engine (since it is very hard to develop one) thus they would not know the action address for posting information...

For my blog it reduced the spam from 10-20 messages per day to 2-3 per year, and all of them seems to be added by real human beings.

share|improve this answer
It's a good technique, but although my comments system uses AJAX I'd like to have it still work if JavaScript is turned off. – John Topley Sep 15 '09 at 10:42
2  
Never assume that user has JS. My mobile phone for example does not have JS at all and I browse the web with NoScript enabled. That way you are not allowing me to post comment at all. – Bragi Ragnarson Sep 15 '09 at 10:45

Since you are not accepting comments any longer, you wish to spend as little resources as possible on those requests.

As soon as you detect a POST request, return 404 code or just close the connection.

share|improve this answer

Since you have control over the application, you can simply ignore the comment post, and return a 200 code anyway. Why give the spammer even the information that there was a problem?

If you want to try other techniques to prevent spam in the future, I've had great luck with Stopping Spambots with Hashes and Honeypots.

share|improve this answer
That's a very interesting point about not even indicating a problem. – John Topley Sep 15 '09 at 11:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.