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

vote up 0 vote down

My solution was to put the form on a seperate page and pass a timestamp to it. On that page I only display the form if the timestamp is valid (not too fast, not too old). I found that bots would always hit the submission page directly and only humans would navigate there correctly.

Won't work if you have the form on the content page itself like you do now, but you could show/hide the link to the special submission page based on noscript. A minor inconvienience for such a small percentage of users.

link|flag
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 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 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 -1 vote down

My suggestion would be an ASCII captcha it does not use an image, and it's programmer/geeky. Here is a PHP implementation http://thephppro.com/products/captcha/ this one is a paid. There is a free, also PHP implementation, however I could not find an example -> http://www.phpclasses.org/browse/package/4544.html

I know these are in PHP but I'm sure you smart guys building SO can 'port' it to your favorite language.

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 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 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 0 vote down

If you're leaning towards the question/answer solution in the past I've presented users with a dropdown of 3-5 random questions that they could choose from and then answer to prove they were human. The list was sorted differently on each page load.

link|flag
vote up 0 vote down

Actually it could be an idea to have a programming related captcha set. For example:

Captcha

There is the possibility of someone building a syntax checker to bypass this but it's a lot more work to bypass a captcha. You get the idea of having a related captcha though.

link|flag
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 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 0 vote down

Even with rep, there should still be SOME type of capcha, to prevent a malicious script attack.

link|flag
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 1 vote down

I wrote up a PHP class that lets you choose to use a certain class of Captcha Question (math, naming, opposites, completion), or to randomize which type is used. These are questions that most english-speaking children could answer. For example:

  1. Math: 2+5 = _
  2. Naming: The animal in this picture is a ____
  3. Opposites: The opposite of happy is ___
  4. Completion: A cow goes _
link|flag
show 2 more comments
vote up 0 vote down

Our form spam has been drastically cut after implementing the honeypot captcha method as mentioned previously. I believe we haven't received any since implementing it.

link|flag
vote up 0 vote down

Do you ever plan to provide an API for Stackoverflow that would allow manipulation of questions/answers programmatically? If so, how is CAPTCHA based protection going to fit into this?

While providing just a rich read-only interface via Atom syndication feeds would allow people to create some interesting smart-clients/tools for organizing and searching the vast content that is Stackoverflow; I could see having the capability outside of the web interface to ask and/or answer questions as well as vote on content as extremely useful. (Although this may not be in line with an ad-based revenue model.)

I would prefer to see Stackoverflow use a heuristic monitoring approach that attempts to detect malicious activity and block the offending user, but can understand how using CAPTCHA may be a simpler approach with your release data coming up soon.

link|flag
vote up 0 vote down

Perhaps the community can come up with some good text-based CAPTCHAs?

We can then come up with a good list based on those with the most votes.

link|flag
vote up 0 vote down

Mollom is another askimet type service which may be of interest. From the guys who wrote drupal / run acquia.

link|flag
vote up 1 vote down

The list of answers were overwhelming!

But finding in page, haven't seen anyone mention "Bad Behavior" yet. It's a plugin for most blogging systems that detects bots based on some bad behavior, you might want to check that out.

link|flag
vote up 1 vote down

This will be per-sign-up and not per-post, right? Because that would just kill the site, even with jQuery automation.

link|flag
vote up 0 vote down

Use a simple text captcha and then ask the users to enter the answer backwards or only the first letter, or the last, or another random thing.

Another idea is to make a ascii image, like this (from Portal game end sequence):

                             .,---.
                           ,/XM#MMMX;,
                         -%##########M%,
                        -@######%  $###@=
         .,--,         -H#######$   $###M:
      ,;$M###MMX;     .;##########$;HM###X=
    ,/@##########H=      ;################+
   -+#############M/,      %##############+
   %M###############=      /##############:
   H################      .M#############;.
   @###############M      ,@###########M:.
   X################,      -$=X#######@:
   /@##################%-     +######$-
   .;##################X     .X#####+,
    .;H################/     -X####+.
      ,;X##############,       .MM/
         ,:+$H@M#######M#$-    .$$=
              .,-=;+$@###X:    ;/=.
                     .,/X$;   .::,
                         .,    ..

And give the user some options like: IS A, LIE, BROKEN HEART, CAKE

link|flag
vote up 5 vote down

Asirra is the most adorable captcha ever.

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

How about just checking to see if Javascript is enabled?

Anyone using this site is surely going to have it enabled. And from what folks say, the Spambots won't have javascript enabled.

link|flag
vote up 1 vote down

I've had amazingly good results with a simple "Leave this field blank:" field. Bots seem to fill in everything, particularly if you name the field something like "URL". Combined with strict referrer checking, I've not had a bot get past it yet.

Please don't forget about accessibility here. Captchas are notoriously unusable for many people using screen readers. Simple math problems, or very trivial trivia (I liked the "what color is the sky" question) are much more friendly to vision-impaired users.

link|flag
vote up 0 vote down

CAPTCHA's check if you are human or computer. The problem is that after that a computer needs to judge whether you are human

so a solution would be to let one user fill out a captcha and let the next user check it. The problem is of course the time gap

link|flag
vote up 0 vote down

I think we must assume that this site will be subject to targeted attacks on a regular basis, not just generic drifting bots. If it becomes the first hit for programmers' searches, it will draw a lot of fire.

To me, that means that any CAPTCHA system cannot pull from a repeating list of questions, which a human can manually feed into a bot, in addition to being unguessable by bots.

link|flag
vote up 1 vote down

If you want an ASCII-based approach, take a look at integrating FIGlet. You could make some custom fonts and do some font selection randomization per character to increase the entrophy. The kerning makes the text more visually pleasing and a bit harder for a bot to reverse engineer.

Such as:

    ______           __     ____               _____          
   / __/ /____ _____/ /__  / __ \_  _____ ____/ _/ /__ _    __
  _\ \/ __/ _ `/ __/  '_/ / /_/ / |/ / -_) __/ _/ / _ \ |/|/ /
 /___/\__/\_,_/\__/_/\_\  \____/|___/\__/_/ /_//_/\___/__,__/ 
link|flag
vote up 2 vote down

I have to admit that I have no experience fighting spambots and don't really know how sophisticated they are. That said, I don't see anything in the jQuery article that couldn't be accomplished purely on the server.

To rephrase the summary from the jQuery article:

  1. When generating the contact form on the server ...
  2. Grab the current time.
  3. Combine that timestamp, plus a secret word, and generate a 32 character 'hash' and store it as a cookie on the visitor's browser.
  4. Store the hash or 'token' timestamp in a hidden form tag.
  5. When the form is posted back, the value of the timestamp will be compared to the 32 character 'token' stored in the cookie.
  6. If the information doesn't match, or is missing, or if the timestamp is too old, stop execution of the request ...

Another option, if you want to use the traditional image CAPTCHA without the overhead of generating them on every request is to pre-generate them offline. Then you just need to randomly choose one to display with each form.

link|flag
vote up 0 vote down

KP's suggestion of the below CAPTCHA is very clever and imageless...

http://www.eggheadcafe.com/tutorials/aspnet/79e023b6-124f-4f63-865c-6d357cddbe56/a-better-captcha-control.aspx

I'd vote for this!

link|flag
show 2 more comments

Your Answer

Get an OpenID
or

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