vote up 93 vote down star
83

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
6  
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
8  
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

prev 1 2 3 4
vote up 1 vote down

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

@Jared - I can barely pick out the bold letters in that string even when I'm trying. Maybe if we made the font HUGE. usability--;

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

how about subkismet ??

link|flag
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 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 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 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 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 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
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 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
prev 1 2 3 4

Your Answer

Get an OpenID
or

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