vote up 91 vote down star
82

It looks like we'll be adding CAPTCHA support to Stack Overflow. This is necessary to prevent bots, spammers, and other malicious scripted activity. We only want human beings to post or edit things here!

We'll be using a JavaScript (JQuery) CAPTCHA as a first line of defense

http://docs.jquery.com/Tutorials:Safer_Contact_Forms_Without_CAPTCHAs

The advantage of this approach is that, for most people, the CAPTCHA won't ever be visible!

However, for people with JavaScript disabled, we still need a fallback -- and this is where it gets tricky.

I have written a traditional CAPTCHA control for ASP.NET which we can re-use.

However, I'd prefer to go with something textual to avoid the overhead of creating all these images on the server with each request.

I've seen things like..

  • ASCII text captcha: \/\/(_)\/\/
  • math puzzles: what is 7 minus 3 times 2?
  • trivia questions: what tastes better, a toad or a popsicle?

Maybe I'm just tilting at windmills here, but I'd like to have a less resource intensive, non-image based <noscript> compatible CAPTCHA if possible.

Ideas?

flag
3  
There is no need to actually create an image on the server. You just need to handle the request. For example <img src="generateImage.aspx?guid=blah"> – Brian R. Bondy Oct 19 '08 at 4:44
5  
Trivia questions are prone to cultural bias (think of a french guy answering your question...). Furthermore, they can tackle users whose English isn't native. Also, they can easily be broken using brute force (you only have ~2^#_OfQuestions options). – Adam Matan Jan 26 at 9:29
3  
@jeff - definitely the former - en.wikipedia.org/wiki/Toad_in_the_hole – Simon Feb 5 at 4:03
5  
Also, what on earth is a popsicle? Is that a euphemism for shit or something? – Fraser Mar 14 at 2:06
show 6 more comments

100 Answers

1 2 3 4 next
vote up 75 vote down check

Jeff,

A method that I have developed and which seems to work perfectly (although I probably don't get as much comment spam as you), is to have a hidden field and fill it with a bogus value eg:

<input type="hidden" name="antispam" value="lalalala" />

I then have a piece of javascript which updates the value every second with the number of seconds the page has been loaded for:

var antiSpam = function() {
        if (document.getElementById("antiSpam")) {
                a = document.getElementById("antiSpam");
                if (isNaN(a.value) == true) {
                        a.value = 0;
                } else {
                        a.value = parseInt(a.value) + 1;
                }
        }
        setTimeout("antiSpam()", 1000);
}

antiSpam();

Then when the form is submitted, If the antispam value is still "lalalala", then I mark it as spam. If the antispam value is an integer, I check to see if it is above something like 10 (seconds). If it's below 10, I mark it as spam, if it's 10 or more, I let it through.

If AntiSpam = A Integer
    If AntiSpam >= 10
        Comment = Approved
    Else
        Comment = Spam
Else
    Comment = Spam

The theory being that:

  • A spam bot will not support javascript and will submit what it sees
  • If the bot does support javascript it will submit the form instantly
  • The commenter has at least read some of the page before posting

The downside to this method is that it requires javascript, and if you don't have javascript enabled, your comment will be marked as spam, however, I do review comments marked as spam, so this is not a problem.

I hope this was of some help.

Cheers, Stephen

Response to comments

@MrAnalogy: The server side approach sounds quite a good idea and is exactly the same as doing it in JS. Good Call.

@AviD: I'm aware that this method is prone to direct attacks as i've mentioned on my blog, however, it will defend against your average spam bot which blindly submits rubbish to any form it can find.

link|flag
4  
VERSION THAT WORKS WITHOUT JAVASCRIPT How about if you did this with ASP, etc. and had a timestamp for when the form page was loaded and then compared that to the time when the form was submitted. If ElapsedTime<10 sec then it's likely spam. – Clay Nichols Sep 9 '08 at 16:48
7  
Very obviously bypassable, if a malicious user bothers to look at it. While I'm sure you're aware of this, I guess you're assuming that they won't bother... Well, if it's not a site of any value, then you're right and they wont bother - but if it is, then they will, and get around it easy enough... – AviD Sep 20 '08 at 17:44
8  
Here's a twist on this that I use. Make the hidden value an encrypted time set to now. Upon post back, verify that between 10 seconds and 10 minutes has elapsed. This foils tricksters who would try to plug in some always-valid value. – Tim Scott Feb 7 at 22:41
4  
To all who have pointed out that bots could get past... This I know as I pointed out in the answer. It's a very simple method to stop your average bot and bored users. I am currently using it on my blog and so far, it has been 100% successful. – GateKiller Mar 5 at 9:21
1  
I think it's better to start with easy-to-bypass tests to see if they are adequate. – pbreitenbach Jul 6 at 14:07
show 4 more comments
vote up 100 vote down

link|flag
2  
But that's nature of voting. – BobbyShaftoe Dec 23 '08 at 3:06
3  
Good solutions can often be found in humorous suggestions. – d03boy Jan 21 at 23:00
12  
Nice spoiler, THANKS!! – Aardvark Feb 18 at 15:12
6  
This answer brings back terrible memories.. what about when johnny 5 gets the crap beaten out of him on short ciruit 2? didn't they know he's alive! damn them! – meandmycode Mar 27 at 10:21
show 1 more comment
vote up 74 vote down

My favourite CAPTCHA ever:

Captcha

link|flag
2  
That one is great. The link to the site is random.irb.hr/signup.php. Sometimes it's a lot easier – Marcio Aguiar Sep 11 '08 at 8:45
1  
Only problem is that it is really hard for majority of humans but computers will usually have no problem with this. – Ctrl Alt D-1337 Dec 22 '08 at 12:14
1  
I believe the answer to that problem is -3? – dancavallaro Dec 22 '08 at 20:21
5  
-3 seems correct. I remember using this website for research a while ago and when I got to the Captcha I was so happy because it was fun and different. It is for access to a quantum random number generator using an actual radioactive decaying source. – Alex Dec 27 '08 at 22:20
show 12 more comments
vote up 34 vote down

@Jeff Just do an audio captcha of the stack overflow podcast! That's how you get it transcribed in these days in which you can't offer private beta keys for transcribers. It's like recaptcha but for SO's podcast. Get three seconds of your banter with Joel and then 2 seconds of a known source. :-)

And you might make this guy happy.

link|flag
show 1 more comment
vote up 31 vote down

How about Orange?

link|flag
3  
Jeff Atwood, founder of stackoverflow, has a blog at www.codinghorror.com. If you want to comment you have to solve a captcha. The captcha is an image that always display "orange". – Marcel Jan 2 at 10:40
show 4 more comments
vote up 18 vote down

The advantage of this approach is that, for most people, the CAPTCHA won't ever be visible!

I like this idea, is there not any way we can just hook into the rep system? I mean, anyone with say +100 rep is likely to be a human. So if they have rep, you need not even bother doing ANYTHING in terms of CAPTCHA.

Then, if they are not, then send it, I'm sure it wont take that many posts to get to 100 and the community will instantly dive on anyone seem to be spamming with offensive tags, why not add a "report spam" link that downmods by 200? Get 3 of those, spambot achievement unlocked, bye bye ;)

EDIT: I should also add, I like the math idea for the non-image CAPTCHA. Or perhaps a simple riddle-type-thing. May make posting even more interesting ^_^

link|flag
4  
What happens if a high karma members account credentials are stolen? – James McMahon May 4 at 2:43
2  
@nemo Then you deal with it. But very little reason to avoid a solution for this reason alone. – pbreitenbach Jul 6 at 14:12
vote up 18 vote down

Unless I'm missing something, whats wrong with using reCAPTCHA as all the work is done externally.

Just a thought.

thing2k

link|flag
1  
Re-captcha is user-hostile. Captchs is bad enough. But making it harder for users in order to get some tiny OCR benefit is positively hostile. – pbreitenbach Jul 6 at 14:15
show 1 more comment
vote up 17 vote down

What about a honeypot captcha?

link|flag
1  
Again, trivially bypassable with a very minimal investment of time. True, you'll manage to block some scriptkiddies, but if your site has value that's not your main threat. – AviD Sep 20 '08 at 17:47
show 3 more comments
vote up 16 vote down

Avoid the worst CAPTCHAs of all time.

Trivia is OK, but you'll have to write each of them :-(

Someone would have to write them.

You could do trivia questions in the same way ReCaptcha does printed words. It offers two words, one of which it knows the answer to, another which it doesn't - after enough answers on the second, it now knows the answer to that too. Ask two trivia questions:

A woman needs a man like a fish needs a?

Orange orange orange. Type green.

Of course, this may need to be coupled with other techniques, such as timers or computed secrets. Questions would need to be rotated/retired, so to keep the supply of questions up you could ad-hoc add:

Enter your obvious question:

You don't even need an answer; other humans will figure that out for you. You may have to allow flagging questions as "too hard", like this one: "asdf ejflf asl;jf ei;fil;asfas".

Now, to slow someone who's running a StackOverflow gaming bot, you'd rotate the questions by IP address - so the same IP address doesn't get the same question until all the questions are exhausted. This slows building a dictionary of known questions, forcing the human owner of the bots to answer all of your trivia questions.

link|flag
show 1 more comment
vote up 14 vote down

I saw this once on a friend's site. He is selling it for 20 bucks. It's ASCII art!

http://thephppro.com/products/captcha/

  .oooooo.         oooooooo 
 d8P'  `Y8b       dP""""""" 
888      888     d88888b.   
888      888 V       `Y88b '
888      888           ]88  
`88b    d88'     o.   .88P  
 `Y8bood8P'      `8bd88P'
link|flag
2  
The problem with this is that it is easier than an image to crack. All you would have to do is read it into a picture, and you have a perfect black and white image to do OCR on. – Andrei Krotkov Jan 15 at 15:51
4  
Flagged for advertising – stevenvh Jun 25 at 10:25
4  
It may be advertising but a) it is a valid answer to the question and b) the author clearly states that this is by a friend (which means he clearly states to be biased), so I don't see any problem with the answer. – Michael Stum Aug 25 at 7:36
show 3 more comments
vote up 13 vote down

So, CAPTCHA is mandatory for all users except moderators. [1]

That's incredibly stupid. So there will be users who can edit any post on the site but not post without CAPTCHA? If you have enough rep to downvote posts, you have enough rep to post without CAPTCHA. Make it higher if you have to. Plus there are plenty of spam detection methods you can employ without image recognition, so that it even for unregistered users it would never be necessary to fill out those god-forsaken CAPTCHA forms.

link|flag
show 1 more comment
vote up 10 vote down

@GateKiller

Good idea, but now that I know how it works I could just set the value of "antispam" to >= 10 when forging a POST request.

Most of the ideas here work great against spam bots but fail hard against attacks. I haven't even tried this, but I doubt there is flood protection; I'm sure someone could write a script to ask a new question every 30 seconds or so.

CAPTCHA is pointless, the best solution is:

  1. Lock the thread when you realize an attack happening
  2. Flag the user
  3. Three(?) flags and you are temp-banned
link|flag
vote up 9 vote down

Be sure it isn't something google can answer though. which also shows an issue with that --order of operations!

link|flag
1  
but is that what I ment? Does english follow order of operations? et cetera... – nlucaroni Oct 16 '08 at 21:51
show 1 more comment
vote up 9 vote down

Although we all should know basic maths, the math puzzle could cause some confusion. In your example i'm sure some people would answer with "8" instead of "1".

Would a simple string of text with random characters highlighted in bold or italics be suitable? The user just needs to enter the bold/italic letters as the captcha.

eg. ssdfatwerweajhcsadkoghvefdhrffghlfgdhowfgh

In this case "stack" would be the captcha. There are obviously numerous variations on this idea.

Edit: Example variations to address some of the potential problems identified with this idea:

  • using randomly coloured letters instead of bold/italic.
  • using every second red letter for the captcha (reduces the possibility of bots identifying differently formatted letters to guess the captcha)
link|flag
show 6 more comments
vote up 8 vote down

Although this similar discussion was started:

We are trying this solution on one of our frequently data mined applications:

A Better CAPTCHA Control (Look Ma - NO IMAGE!)

You can see it in action on our Building Inspections Search.

You can view Source and see that the CAPTCHA is just HTML.

link|flag
show 1 more comment
vote up 6 vote down

I mean, anyone with say +100 rep is likely to be a human. So if they have rep, you need not even bother doing ANYTHING in terms of CAPTCHA

Yeah, that's what I used to think, too. Note number of revisions on that post and their source. Hi Kevin!

So, CAPTCHA is mandatory for all users except moderators.

link|flag
vote up 6 vote down

CAPTCHA, in its current conceptualization, is broken and often easily bypassed. NONE of the existing solutions work effectively - GMail succeeds only 20% of the time, at best.

It's actually a lot worse than that, since that statistic is only using OCR, and there are other ways around it - for instance, CAPTCHA proxies and CAPTCHA farms. I recently gave a talk on the subject at OWASP, but the ppt is not online yet...

While CAPTCHA cannot provide actual protection in any form, it may be enough for your needs, if what you want is to block casual drive-by trash. But it won't stop even semi-professional spammers.

Typically, for a site with resources of any value to protect, you need a 3-pronged approach:

  • Throttle responses from authenticated users only, disallow anonymous posts.
  • Minimize (not prevent) the few trash posts from authenticated users - e.g. reputation-based. A human moderator can also help here, but then you have other problems - namely, flooding (or even drowning) the moderator, and some sites prefer the openness...
  • Use server-side heuristic logic to identify spam-like behavior, or better non-human-like behavior.

CAPTCHA can help a TINY bit with the second prong, simply because it changes the economics - if the other prongs are in place, it no longer becomes worthwhile to bother breaking through the CAPTCHA (minimal cost, but still a cost) to succeed in such a small amount of spam.

Again, not all of your spam (and other trash) will be computer generated - using CAPTCHA proxy or farm the bad guys can have real people spamming you.


CAPTCHA proxy is when they serve your image to users of other sites, e.g. porn, games, etc.

A CAPTCHA farm has many cheap laborers (India, far east, etc) solving them... typically between 2-4$ per 1000 captchas solved. Recently saw a posting for this on Ebay...

link|flag
1  
Exactly! But CAPTCHAs are most often used to prevent "bots" - and it matters not if these bots are human or not, the intent is to prevent mass, non personal usage. This just proves what I always say, CAPTCHA solves the wrong problem (and does so badly)... – AviD Mar 14 at 17:56
show 3 more comments
vote up 5 vote down

Without an actual CAPTCHA as your first line of defense, aren't you still vulnerable to spammers scripting the browser (trivial using VB and IE)? I.e. load the page, navigate the DOM, click the submit button, repeat...

link|flag
vote up 5 vote down

Unless I'm missing something, whats wrong with using reCAPTCHA as all the work is done externally.

RTFQ:

However, for people with JavaScript disabled, we still need a fallback -- and this is where it gets tricky.

reCAPTCHA uses JavaScript. Thus: problem.

link|flag
1  
reCapthca also has a Server-Side method for users with no JavaScript. – Unkwntech Oct 13 '08 at 12:26
show 2 more comments
vote up 5 vote down

Asirra is the most adorable captcha ever.

link|flag
show 2 more comments
vote up 5 vote down

I've been using the following simple technique, it's not foolproof. If someone really wants to bypass this, it's easy to look at the source (i.e. not suitable for the google captcha) but it should fool most bots.

Add 2 or more form fields like this:

<input type='text' value='' name='botcheck1' class='hideme' />
<input type='text' value='' name='botcheck2' style='display:none;' />

Then css to hide them:

.hideme {
    display: none;
}

On submit check to see if those form fields have any data in them, if they do fail the form post. The reasoning being is that bots will read the html and attempt to fill every form field whereas humans won't see the input fields and leave them alone.

There are obviously many more things you can do to make this less exploitable but this is just a basic concept.

link|flag
vote up 4 vote down

Best captcha ever! Maybe you need something like this for sign-up to keep the riff-raff out.

link|flag
vote up 4 vote down

I just use simple questions that anyone can answer:

What color is the sky?
What color is an orange?
What color is grass?

It makes it so that someone has to custom program a bot to your site, which probably isn't worth the effort. If they do, you just change the questions.

link|flag
2  
The answers: 1) Right now, a light blue, later, red, then black with hints of orange near downtown. 2) orange, unless it's moldy, then it's green or black or white. 3) brown, in Southern California, unless you're in Beverly Hills, then it's green. – mmr Oct 21 at 22:35
show 3 more comments
vote up 4 vote down

Very simple arithmetic is good. Blind people will be able to answer. (But as Jarod said, beware of operator precedence.) I gather someone could write a parser, but it makes the spamming more costly.

Sufficiently simple, and it will be not difficult to code around it. I see two threats here:

  1. random spambots and the human spambots that might back them up; and
  2. bots created to game StackOverflow

With simple arithmetic, you might beat off threat #1, but not threat #2.

link|flag
show 1 more comment
vote up 3 vote down

Someone also suggest the Raphael Javascript library, which apparently lets you draw on the client in all popular browsers:

http://dmitry.baranovskiy.com/raphael/

.. but that wouldn't exactly work with my <noscript> case, now would it ? :)

link|flag
vote up 3 vote down

What if you used a combination of the captcha ideas you had (choose any of them - or select one of them randomly):

  • ASCII text captcha: \/\/(_)\/\/
  • math puzzles: what is 7 minus 3 times 2?
  • trivia questions: what tastes better, a toad or a popsicle?

with the addition of placing the exact same captcha in a css hidden section of the page - the honeypot idea. That way, you'd have one place where you'd expect the correct answer and another where the answer should be unchanged.

link|flag
vote up 3 vote down

I personally do not like CAPTCHA it harms usability and does not solve the security issue of making valid users invalid.

I prefer methods of bot detection that you can do server side. Since you have valid users (thanks to OpenID) you can block those who do not "behave", you just need to identify the patterns of a bot and match it to patterns of a typical user and calculate the difference.

Davies, N., Mehdi, Q., Gough, N. : Creating and Visualising an Intelligent NPC using Game Engines and AI Tools http://www.comp.glam.ac.uk/ASMTA2005/Proc/pdf/game-06.pdf

Golle, P., Ducheneaut, N. : Preventing Bots from Playing Online Games <-- ACM Portal

Ducheneaut, N., Moore, R. : The Social Side of Gaming: A Study of Interaction Patterns in a Massively Multiplayer Online Game

Sure most of these references point to video game bot detection, but that is because that was what the topic of our group's paper titled Robot Wars: An In-Game Exploration of Robot Identification. It was not published or anything, just something for a school project. I can email if you are interested. The fact is though that even if it is based on video game bot detection, you can generalize it to the web because there is a user attached to patterns of usage.

I do agree with MusiGenesis 's method of this approach because it is what I use on my website and it does work decently well. The invisible CAPTCHA process is a decent way of blocking most scripts, but that still does not prevent a script writer from reverse engineering your method and "faking" the values you are looking for in javascript.

I will say the best method is to 1) establish a user so that you can block when they are bad, 2) identify an algorithm that detects typical patterns vs. non-typical patterns of website usage and 3) block that user accordingly.

link|flag
show 2 more comments
vote up 2 vote down

Ascii text isn't much more legible than the really screwy image captchas that are around these days.

I think the math puzzle would be a good fit here, since we're all supposed to be fairly math-oriented. Just don't ask me to do integration, please.

link|flag
vote up 2 vote down

I like the word math problems. It would be interesting to try it out (at least it's easy to do) and see how the baddies respond.

link|flag
1 2 3 4 next

Your Answer

Get an OpenID
or

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