Practical non-image based CAPTCHA approaches? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T15:50:39Z http://stackoverflow.com/feeds/question/8472 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches 91 Practical non-image based CAPTCHA approaches? Jeff Atwood 2008-08-12T04:59:35Z 2009-10-22T21:20:42Z <p>It looks like we'll be adding <a href="http://en.wikipedia.org/wiki/Captcha" rel="nofollow">CAPTCHA</a> 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!</p> <p>We'll be using a JavaScript (JQuery) CAPTCHA as a first line of defense</p> <p><a href="http://docs.jquery.com/Tutorials:Safer_Contact_Forms_Without_CAPTCHAs" rel="nofollow">http://docs.jquery.com/Tutorials:Safer_Contact_Forms_Without_CAPTCHAs</a></p> <p>The advantage of this approach is that, <strong>for most people, the CAPTCHA won't ever be visible!</strong></p> <p>However, for people with JavaScript disabled, we still need a fallback -- and this is where it gets tricky.</p> <p>I have written a <a href="http://www.codeproject.com/KB/custom-controls/CaptchaControl.aspx" rel="nofollow">traditional CAPTCHA control for ASP.NET</a> which we can re-use.</p> <p><img src="http://www.codeproject.com/KB/custom-controls/CaptchaControl/CaptchaImage-medium.jpg"/></p> <p>However, I'd prefer to go with something textual to avoid the overhead of creating all these images on the server with each request.</p> <p>I've seen things like..</p> <ul> <li>ASCII text captcha: <code>\/\/(_)\/\/</code></li> <li>math puzzles: what is 7 minus 3 times 2?</li> <li>trivia questions: what tastes better, a toad or a popsicle?</li> </ul> <p>Maybe I'm just tilting at windmills here, but I'd like to have a less resource intensive, non-image based <code>&lt;noscript&gt;</code> compatible CAPTCHA if possible.</p> <p>Ideas?</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8474#8474 3 Answer by Jeff Atwood for Practical non-image based CAPTCHA approaches? Jeff Atwood 2008-08-12T05:02:49Z 2008-08-12T05:02:49Z <p>Someone also suggest the Raphael Javascript library, which apparently lets you draw on the client in all popular browsers:</p> <p><a href="http://dmitry.baranovskiy.com/raphael/" rel="nofollow">http://dmitry.baranovskiy.com/raphael/</a></p> <p>.. but that wouldn't exactly work with my <code>&lt;noscript&gt;</code> case, now would it ? :)</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8475#8475 2 Answer by Derek Park for Practical non-image based CAPTCHA approaches? Derek Park 2008-08-12T05:04:04Z 2008-08-12T05:04:04Z <p>Ascii text isn't much more legible than the really screwy image captchas that are around these days.</p> <p>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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8477#8477 2 Answer by Mark Harrison for Practical non-image based CAPTCHA approaches? Mark Harrison 2008-08-12T05:09:46Z 2008-08-12T05:09:46Z <p>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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8478#8478 9 Answer by nlucaroni for Practical non-image based CAPTCHA approaches? nlucaroni 2008-08-12T05:09:51Z 2008-08-12T05:09:51Z <p>Be sure it isn't something <a href="http://www.google.com/search?q=what+is+7+minus+3+times+2%3F" rel="nofollow">google can answer</a> though. which also shows an issue with that --order of operations!</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8481#8481 9 Answer by Jarod Elliott for Practical non-image based CAPTCHA approaches? Jarod Elliott 2008-08-12T05:11:39Z 2008-08-12T10:55:54Z <p>Although we all <strong>should</strong> 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".</p> <p>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.</p> <p>eg. <strong>s</strong>sdfa<strong>t</strong>werwe<strong>a</strong>jh<strong>c</strong>sad<strong>k</strong>oghvefdhrffghlfgdhowfgh</p> <p>In this case "stack" would be the captcha. There are obviously numerous variations on this idea.</p> <p>Edit: Example variations to address some of the potential problems identified with this idea:</p> <ul> <li>using randomly coloured letters instead of bold/italic.</li> <li>using every second red letter for the captcha (reduces the possibility of bots identifying differently formatted letters to guess the captcha)</li> </ul> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8484#8484 18 Answer by Rob Cooper for Practical non-image based CAPTCHA approaches? Rob Cooper 2008-08-12T05:15:04Z 2008-08-12T05:15:04Z <blockquote> <p>The advantage of this approach is that, for most people, <strong>the CAPTCHA won't ever be visible!</strong></p> </blockquote> <p>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.</p> <p>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 ;)</p> <p><strong>EDIT</strong>: I should also add, I like the math idea for the non-image CAPTCHA. Or perhaps a <em>simple</em> riddle-type-thing. May make posting even more interesting ^_^</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8487#8487 6 Answer by Jeff Atwood for Practical non-image based CAPTCHA approaches? Jeff Atwood 2008-08-12T05:18:48Z 2008-08-12T05:18:48Z <blockquote> <p>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</p> </blockquote> <p>Yeah, that's <a href="http://beta.stackoverflow.com/questions/6532/is-editing-other-peoples-posts-wrong" rel="nofollow">what I used to think, too</a>. Note <a href="http://beta.stackoverflow.com/revisions/6532/list" rel="nofollow">number of revisions</a> on that post and <a href="http://beta.stackoverflow.com/users/795/akira" rel="nofollow">their source</a>. Hi <a href="http://beta.stackoverflow.com/users/40/kevin-d" rel="nofollow">Kevin!</a></p> <p>So, CAPTCHA is mandatory for all users except moderators.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8489#8489 17 Answer by lomaxx for Practical non-image based CAPTCHA approaches? lomaxx 2008-08-12T05:20:05Z 2008-08-12T05:20:05Z <p>What about a <a href="http://haacked.com/archive/2007/09/11/honeypot-captcha.aspx" rel="nofollow">honeypot captcha</a>?</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8503#8503 0 Answer by Abhijit for Practical non-image based CAPTCHA approaches? Abhijit 2008-08-12T05:32:21Z 2008-08-12T05:32:21Z <p>how about <a href="http://haacked.com/archive/0001/01/01/introducing-subkismet-the-cure-for-comment-spam.aspx" rel="nofollow">subkismet</a> ??</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8505#8505 1 Answer by pc1oad1etter for Practical non-image based CAPTCHA approaches? pc1oad1etter 2008-08-12T05:36:20Z 2008-08-12T05:36:20Z <blockquote> <p>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.</p> <p>eg. ssdfatwerweajhcsadkoghvefdhrffghlfgdhowfgh</p> </blockquote> <p>@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--;</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8514#8514 0 Answer by Jarod Elliott for Practical non-image based CAPTCHA approaches? Jarod Elliott 2008-08-12T05:47:15Z 2008-08-12T05:47:15Z <p>@pc1oad1etter I also noticed that after doing my post. However, it's just an idea and not the actual implementation. Varying the font or using different colours instead of bold/italics would easily address usability issues.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8523#8523 34 Answer by pc1oad1etter for Practical non-image based CAPTCHA approaches? pc1oad1etter 2008-08-12T05:56:45Z 2008-08-12T06:16:29Z <p>@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 <a href="http://recaptcha.net/" rel="nofollow">recaptcha</a> but for SO's podcast. Get three seconds of your banter with Joel and then 2 seconds of a known source. :-)</p> <p>And you might <a href="http://beta.stackoverflow.com/questions/5648/why-has-transcription-of-the-stackoverflow-podcast-stopped" rel="nofollow">make this guy happy</a>.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8543#8543 1 Answer by Lance Fisher for Practical non-image based CAPTCHA approaches? Lance Fisher 2008-08-12T06:15:25Z 2008-08-12T06:15:25Z <p>Who says you have to <em>create</em> all the images on the server with each request? Maybe you could have a static list of images or pull them from flickr. I like the "click on the kitten" captcha idea. <a href="http://www.thepcspy.com/kittenauth" rel="nofollow">http://www.thepcspy.com/kittenauth</a></p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8548#8548 0 Answer by Derek Park for Practical non-image based CAPTCHA approaches? Derek Park 2008-08-12T06:21:48Z 2008-08-12T06:25:05Z <p>@lance</p> <blockquote> <p>Who says you have to create all the images on the server with each request? Maybe you could have a static list of images or pull them from flickr. I like the "click on the kitten" captcha idea. <a href="http://www.thepcspy.com/kittenauth" rel="nofollow">http://www.thepcspy.com/kittenauth</a></p> </blockquote> <p>If you pull from a static list of images, it becomes trivial to circumvent the captcha, because a human can classify them and then the bot would be able to answer the challenges easily. Even if a bot can't answer all of them, it can still spam. It only need to be able to answer a small percent of captchas, because it can always just retry when an attempt fails.</p> <p>This is actually a problem with puzzles and such, too, because it's extremely difficult to have a large set of challenges.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8554#8554 0 Answer by Derek Park for Practical non-image based CAPTCHA approaches? Derek Park 2008-08-12T06:29:47Z 2008-08-12T06:29:47Z <p>@rob</p> <blockquote> <blockquote> <p>What about a honeypot captcha? Wow, so simple! Looks good! Although they have highlighted the accessibility issue.. Do you think that this would be a problem at SO? I personally find it hard to imagine developers/programmers that have difficulty reading the screen to the point where they need a screen reader?</p> </blockquote> </blockquote> <p>There are developers who are not just legally blind, but 100% blind. Walking cane and helper dog. I hope the site will support them in a reasonable fashion.</p> <p>However, with the honeypot captcha, you can put a hidden div as well that tells them to leave the field blank. And you can also put it in the error message if they do fill it in, so I'm not sure how much of an issue accessibility really is here. It's definitely not great, but it could be worse.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8556#8556 1 Answer by Tyronomo for Practical non-image based CAPTCHA approaches? Tyronomo 2008-08-12T06:33:06Z 2008-08-12T06:33:06Z <p>I had a load of spam issues on a phpBB 2.0 site I was running a while back (the site is now upgraded).<br><br> I installed a custom captcha mod I found on the pbpBB forums that worked well for a period of time. I found the real solution was combining this with additional 'required' fields [on the account creation page]. <br>I added; <em>Location</em> and <em>Occupation</em> (mundane, yet handy to know). <br> The bot never tried to fill these in, still assuming the captcha was the point of fail for each attempt.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8565#8565 0 Answer by Christian Lescuyer for Practical non-image based CAPTCHA approaches? Christian Lescuyer 2008-08-12T07:29:45Z 2008-08-22T15:02:30Z <p>Answering the original question:</p> <ul> <li>ASCII is bad : I had to squint to find "WOW". Is this even correct? It could be "VVOVV" or whatever;</li> <li>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.</li> <li>Trivia is OK, but you'll have to write each of them :-(</li> </ul> <p>I've seen pictures of animals [what is it?]. Votes for comics use a picture of a character with their name written somewhere in the image [type in name]. Impossible to parse, not ok for blind people. </p> <p>You could have an audio fallback reading alphanumerics (the same letters and numbers you have in the captcha).</p> <p>Final line of defense: make spam easy to report (one click) and easy to delete (one recap screen to check it's a spam account, with the last ten messages displayed, one click to delete account). This is still time-expensive, though.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8637#8637 74 Answer by GateKiller for Practical non-image based CAPTCHA approaches? GateKiller 2008-08-12T09:34:30Z 2008-10-01T01:44:16Z <p>Jeff,</p> <p><a href="http://gatekiller.co.uk/Post/JavaScript_Captcha" rel="nofollow">A method that I have developed</a> 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:</p> <pre><code>&lt;input type="hidden" name="antispam" value="lalalala" /&gt; </code></pre> <p>I then have a piece of javascript which updates the value every second with the number of seconds the page has been loaded for:</p> <pre><code>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(); </code></pre> <p>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.</p> <pre><code>If AntiSpam = A Integer If AntiSpam &gt;= 10 Comment = Approved Else Comment = Spam Else Comment = Spam </code></pre> <p>The theory being that:</p> <ul> <li>A spam bot will not support javascript and will submit what it sees</li> <li>If the bot does support javascript it will submit the form instantly</li> <li>The commenter has at least read some of the page before posting</li> </ul> <p>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.</p> <p>I hope this was of some help.</p> <p>Cheers, Stephen</p> <p><strong>Response to comments</strong></p> <p>@<a href="#52339" rel="nofollow">MrAnalogy</a>: The server side approach sounds quite a good idea and is exactly the same as doing it in JS. Good Call.</p> <p>@<a href="#80365" rel="nofollow">AviD</a>: I'm aware that this method is prone to direct attacks as i've mentioned on <a href="http://gatekiller.co.uk/Post/JavaScript_Captcha" rel="nofollow">my blog</a>, however, it will defend against your average spam bot which blindly submits rubbish to any form it can find.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/9437#9437 2 Answer by Justin Standard for Practical non-image based CAPTCHA approaches? Justin Standard 2008-08-13T03:26:20Z 2008-08-13T03:26:20Z <p>There was a CAPTCHA you talked about in your blog where you had to identify pictures of dogs or cats. That one has always been memorable to me.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/9477#9477 10 Answer by Akira for Practical non-image based CAPTCHA approaches? Akira 2008-08-13T04:36:12Z 2008-08-13T05:43:02Z <p><a href="#8637" rel="nofollow">@GateKiller</a></p> <p>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.</p> <p>Most of the ideas here work great against <strong>spam bots</strong> but fail hard against <strong>attacks</strong>. I haven't even tried this, but I doubt there is <strong>flood protection</strong>; I'm sure someone could write a script to ask a new question every 30 seconds or so.</p> <p>CAPTCHA is pointless, the best solution is:</p> <ol> <li>Lock the thread when you realize an attack happening</li> <li>Flag the user</li> <li>Three(?) flags and you are temp-banned</li> </ol> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/10104#10104 8 Answer by KP for Practical non-image based CAPTCHA approaches? KP 2008-08-13T17:25:04Z 2008-08-13T17:25:04Z <p>Although this <a href="http://beta.stackoverflow.com/questions/3027/is-there-an-unobtrusive-captcha-for-web-forms" rel="nofollow" title="I/O management and disk scheduling">similar discussion</a> was started:</p> <p>We are trying this solution on one of our frequently data mined applications:</p> <p><a href="http://www.eggheadcafe.com/tutorials/aspnet/79e023b6-124f-4f63-865c-6d357cddbe56/a-better-captcha-control.aspx" rel="nofollow" title="Inside Windows Vista Kernel">A Better CAPTCHA Control (Look Ma - NO IMAGE!) </a></p> <p>You can see it in action on our <a href="https://buildinginspections.coj.net/bid_secure/default.aspx" rel="nofollow" title="Kernel Comparison: Linux (2.6.22) versus Windows (Vista)">Building Inspections Search</a>.</p> <p>You can view Source and see that the CAPTCHA is just HTML.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/10995#10995 0 Answer by Thomi for Practical non-image based CAPTCHA approaches? Thomi 2008-08-14T13:25:45Z 2008-08-14T13:25:45Z <p>How about showing nine random geometric shapes, and asking the user to select the two squares, or two circles or something.. should be pretty easy to write, and easy to use as well..</p> <p>There's nothing worse than having text you cannot read properly...</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/11953#11953 23 Answer by Ryan Fox for Practical non-image based CAPTCHA approaches? Ryan Fox 2008-08-15T04:15:17Z 2008-08-15T18:50:47Z <p><img src="http://www.dieselsweeties.com/hstrips/0/2/0/8/02081.png" width="600"> <a href="http://www.dieselsweeties.com/archive/2081" rel="nofollow">http://www.dieselsweeties.com/archive/2081</a></p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/12469#12469 1 Answer by Jon Galloway for Practical non-image based CAPTCHA approaches? Jon Galloway 2008-08-15T16:46:52Z 2008-08-15T16:46:52Z <p>Have you looked at <a href="http://waegis.com/" rel="nofollow">Waegis</a>?</p> <p>"Waegis is an online web service that exposes an open API (Application Programming Interface). It gets incoming data through its API methods and applies a quick check and identifies spam and legitimate content on time. It then returns a result to client to specify if the content is spam or not."</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/12473#12473 31 Answer by Zack Peterson for Practical non-image based CAPTCHA approaches? Zack Peterson 2008-08-15T16:54:54Z 2008-08-15T16:54:54Z <p>How about Orange?</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/12490#12490 5 Answer by Michael Pryor for Practical non-image based CAPTCHA approaches? Michael Pryor 2008-08-15T17:17:07Z 2008-08-15T17:17:07Z <p>Without an actual CAPTCHA as your <em>first</em> 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...</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/12527#12527 13 Answer by superjoe30 for Practical non-image based CAPTCHA approaches? superjoe30 2008-08-15T17:40:58Z 2008-08-15T17:40:58Z <blockquote> <p>So, CAPTCHA is mandatory for all users except moderators. <a href="http://beta.stackoverflow.com/questions/8472?sort=oldest#8487" rel="nofollow">[1]</a></p> </blockquote> <p>That's incredibly stupid. So there will be users who can <strong><em>edit any post on the site</em></strong> 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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/12610#12610 0 Answer by Akira for Practical non-image based CAPTCHA approaches? Akira 2008-08-15T19:09:46Z 2008-08-15T19:09:46Z <p>I think they are working on throttling. It would make more sense just to disable CAPTCHA for users with 500+ rep and reset the rep for attackers.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/12695#12695 0 Answer by HS for Practical non-image based CAPTCHA approaches? HS 2008-08-15T20:23:51Z 2008-08-15T20:27:59Z <p>I recently (can't remember where) saw a system that showed a bunch of pictures. Each of the pictures had a character assigned to it. The user was then asked to type in the characters for some pictures that showed examples of some category (cars, computers, buildings, flowers and so on). The pictures and characters changed each time as well as the categories to build the CAPTCHA string.</p> <p>The only problem is the higher bandwidth associated with this approach and you need a lot of pictures that are classified in categories. There is no need to waste much resources generating the pictures.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/12726#12726 -2 Answer by Patrick Johnmeyer for Practical non-image based CAPTCHA approaches? Patrick Johnmeyer 2008-08-15T20:47:50Z 2008-08-15T21:19:44Z <p>One option would be out-of-band communication; the server could send the user an instant message (or SMS message?) that he/she then has to type into the captcha field.</p> <p>This imparts an "either/or" requirement on the user -- either you must enable JavaScript OR you must be logged on to your IM service of choice. While it maybe isn't as flexible as some of the other solutions above, it would work for the vast majority of users.</p> <p>Those with edit privileges, feel free to add to the Pros/Cons rather than submitting a separate reply.</p> <p>Pros: </p> <ul> <li>Accessible: Many IM clients support reading of incoming messages. Some web-based clients will work with screen readers.</li> </ul> <p>Cons:</p> <ul> <li>Javascript-disabled users are now dependent on up-time of yet another service, on top of OpenID.</li> <li>Bots will cause additional server resource usage (sending the out-of-band communications) unless additional protections are implemented</li> </ul> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/16757#16757 0 Answer by dsims for Practical non-image based CAPTCHA approaches? dsims 2008-08-19T19:08:35Z 2008-08-19T19:16:24Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/19585#19585 18 Answer by thing2k for Practical non-image based CAPTCHA approaches? thing2k 2008-08-21T10:23:08Z 2008-08-21T10:23:08Z <p>Unless I'm missing something, whats wrong with using <a href="http://recaptcha.net/whyrecaptcha.html" rel="nofollow">reCAPTCHA</a> as all the work is done externally. </p> <p>Just a thought.</p> <p>thing2k</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/19695#19695 100 Answer by Prakash for Practical non-image based CAPTCHA approaches? Prakash 2008-08-21T12:11:55Z 2009-07-02T18:38:08Z <p><a href="http://xkcd.com/233/" rel="nofollow"><img src="http://imgs.xkcd.com/comics/a_new_captcha_approach.png" title="They'd use that Futurama episode with Fry's dog, but even spambots cry at that."></a></p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/19705#19705 4 Answer by Chris Bartow for Practical non-image based CAPTCHA approaches? Chris Bartow 2008-08-21T12:16:40Z 2008-08-21T12:16:40Z <p><a href="http://random.irb.hr/signup.php" rel="nofollow">Best captcha ever!</a> Maybe you need something like this for sign-up to keep the riff-raff out.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/21963#21963 -1 Answer by Unkwntech for Practical non-image based CAPTCHA approaches? Unkwntech 2008-08-22T09:09:26Z 2008-08-22T09:09:26Z <p>My suggestion would be an ASCII captcha it does not use an image, and it's programmer/geeky. Here is a PHP implementation <a href="http://thephppro.com/products/captcha/" rel="nofollow">http://thephppro.com/products/captcha/</a> this one is a paid. There is a free, also PHP implementation, however I could not find an example -> <a href="http://www.phpclasses.org/browse/package/4544.html" rel="nofollow">http://www.phpclasses.org/browse/package/4544.html</a></p> <p>I know these are in PHP but I'm sure you smart guys building SO can 'port' it to your favorite language.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/22755#22755 4 Answer by tghw for Practical non-image based CAPTCHA approaches? tghw 2008-08-22T16:06:53Z 2008-08-22T16:06:53Z <p>I just use simple questions that anyone can answer:</p> <p>What color is the sky?<br /> What color is an orange?<br /> What color is grass?</p> <p>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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/26703#26703 3 Answer by TheImirOfGroofunkistan for Practical non-image based CAPTCHA approaches? TheImirOfGroofunkistan 2008-08-25T19:42:20Z 2008-08-25T19:42:20Z <p>What if you used a combination of the captcha ideas you had (choose any of them - or select one of them randomly):</p> <ul> <li>ASCII text captcha: \/\/(_)\/\/</li> <li>math puzzles: what is 7 minus 3 times 2?</li> <li>trivia questions: what tastes better, a toad or a popsicle?</li> </ul> <p>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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/26722#26722 74 Answer by ceejayoz for Practical non-image based CAPTCHA approaches? ceejayoz 2008-08-25T19:52:35Z 2008-08-25T19:52:35Z <p>My <a href="http://flickr.com/photos/ceejayoz/2674227920/" rel="nofollow">favourite CAPTCHA ever</a>:</p> <p><img src="http://farm4.static.flickr.com/3202/2674227920_32e5f692d3.jpg?v=0" alt="Captcha" /></p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/26724#26724 0 Answer by Chuck for Practical non-image based CAPTCHA approaches? Chuck 2008-08-25T19:53:13Z 2008-08-25T19:53:13Z <p>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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/26737#26737 0 Answer by Ross for Practical non-image based CAPTCHA approaches? Ross 2008-08-25T19:59:59Z 2008-08-25T19:59:59Z <p>Actually it could be an idea to have a programming related captcha set. For example:</p> <p><img src="http://i37.tinypic.com/29w7gig.jpg" alt="Captcha" /></p> <p>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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/29493#29493 16 Answer by Josh for Practical non-image based CAPTCHA approaches? Josh 2008-08-27T04:04:26Z 2008-08-27T04:57:21Z <p>Avoid the <a href="http://www.docstoc.com/docs/1048763/Worst-Captchas-of-All-Time" rel="nofollow">worst CAPTCHAs of all time</a>.</p> <blockquote> <p>Trivia is OK, but you'll have to write each of them :-(</p> </blockquote> <p><em>Someone</em> would have to write them. </p> <p>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:</p> <p>A woman needs a man like a fish needs a?</p> <p>Orange orange orange. Type green.</p> <p>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:</p> <p>Enter your obvious question: </p> <p>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".</p> <p>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 <em>all</em> 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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/29502#29502 5 Answer by Josh for Practical non-image based CAPTCHA approaches? Josh 2008-08-27T04:14:45Z 2008-08-27T04:14:45Z <blockquote> <p>Unless I'm missing something, whats wrong with using reCAPTCHA as all the work is done externally. </p> </blockquote> <p>RTFQ:</p> <blockquote> <p>However, for people with JavaScript disabled, we still need a fallback -- and this is where it gets tricky.</p> </blockquote> <p>reCAPTCHA uses JavaScript. Thus: problem.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/29522#29522 0 Answer by Adam for Practical non-image based CAPTCHA approaches? Adam 2008-08-27T04:34:21Z 2008-08-27T04:34:21Z <p>Even with rep, there should still be SOME type of capcha, to prevent a malicious script attack.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/29548#29548 4 Answer by Josh for Practical non-image based CAPTCHA approaches? Josh 2008-08-27T04:54:56Z 2008-08-27T04:54:56Z <blockquote> <p>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.</p> </blockquote> <p>Sufficiently simple, and it will be not difficult to code around it. I see two threats here: </p> <ol> <li>random spambots and the human spambots that might back them up; and</li> <li>bots created to game StackOverflow</li> </ol> <p>With simple arithmetic, you might beat off threat #1, but not threat #2.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/33340#33340 1 Answer by lo_fye for Practical non-image based CAPTCHA approaches? lo_fye 2008-08-28T20:37:06Z 2008-08-28T20:37:06Z <p>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. <strong>For example:</strong> </p> <ol> <li>Math: 2+5 = _</li> <li>Naming: The animal in this picture is a ____</li> <li>Opposites: The opposite of happy is ___</li> <li>Completion: A cow goes <strong>_</strong></li> </ol> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/33354#33354 0 Answer by Mike Wills for Practical non-image based CAPTCHA approaches? Mike Wills 2008-08-28T20:46:33Z 2008-08-28T20:46:33Z <p>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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/33526#33526 0 Answer by Oppositional for Practical non-image based CAPTCHA approaches? Oppositional 2008-08-28T22:13:24Z 2008-08-28T22:13:24Z <p>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?</p> <p>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.)</p> <p>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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/34881#34881 0 Answer by andyuk for Practical non-image based CAPTCHA approaches? andyuk 2008-08-29T18:01:21Z 2008-08-29T18:14:06Z <p>Perhaps the community can come up with some good text-based CAPTCHAs?</p> <p>We can then come up with a good list based on those with the most votes.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/40647#40647 0 Answer by jimg for Practical non-image based CAPTCHA approaches? jimg 2008-09-02T20:58:07Z 2008-09-02T20:58:07Z <p><a href="http://mollom.com" rel="nofollow" title="Mollom">Mollom</a> is another <a href="http://akismet.com/development/" rel="nofollow">askimet</a> type service which may be of interest. From the guys who wrote drupal / run acquia. </p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/40661#40661 1 Answer by chakrit for Practical non-image based CAPTCHA approaches? chakrit 2008-09-02T21:03:17Z 2008-09-02T21:03:17Z <p>The list of answers were overwhelming!</p> <p>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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/40677#40677 1 Answer by Joel Coehoorn for Practical non-image based CAPTCHA approaches? Joel Coehoorn 2008-09-02T21:09:00Z 2008-09-02T21:09:00Z <p>This will be per-sign-up and not per-post, right? Because that would just kill the site, even with jQuery automation. </p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/40686#40686 0 Answer by Hoffmann for Practical non-image based CAPTCHA approaches? Hoffmann 2008-09-02T21:12:32Z 2008-09-02T21:12:32Z <p>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.</p> <p>Another idea is to make a ascii image, like this (from Portal game end sequence):</p> <pre><code> .,---. ,/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$; .::, ., .. </code></pre> <p>And give the user some options like: IS A, LIE, BROKEN HEART, CAKE</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/49124#49124 5 Answer by Nick Retallack for Practical non-image based CAPTCHA approaches? Nick Retallack 2008-09-08T03:26:07Z 2008-09-08T03:26:07Z <p><a href="http://research.microsoft.com/asirra/" rel="nofollow">Asirra</a> is the most adorable captcha ever.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/52339#52339 0 Answer by Clay Nichols for Practical non-image based CAPTCHA approaches? Clay Nichols 2008-09-09T16:57:01Z 2008-09-09T16:57:01Z <p>How about just checking to see if Javascript is enabled? </p> <p>Anyone using this site is surely going to have it enabled. And from what folks say, the Spambots won't have javascript enabled.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/52436#52436 1 Answer by Tina Marie for Practical non-image based CAPTCHA approaches? Tina Marie 2008-09-09T17:36:51Z 2008-09-09T17:36:51Z <p>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. </p> <p>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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/52475#52475 0 Answer by Jacobbus for Practical non-image based CAPTCHA approaches? Jacobbus 2008-09-09T17:59:15Z 2008-09-09T17:59:15Z <p>CAPTCHA's check if you are human or computer. The problem is that after that a computer needs to judge whether you are human</p> <p>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</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/52518#52518 0 Answer by Nathan Long for Practical non-image based CAPTCHA approaches? Nathan Long 2008-09-09T18:20:33Z 2008-09-09T18:20:33Z <p>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 <b>lot</b> of fire.</p> <p>To me, that means that any CAPTCHA system <b>cannot pull from a repeating list of questions</b>, which a human can manually feed into a bot, in addition to being unguessable by bots.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/52529#52529 1 Answer by spoulson for Practical non-image based CAPTCHA approaches? spoulson 2008-09-09T18:24:52Z 2008-09-09T18:24:52Z <p>If you want an ASCII-based approach, take a look at integrating <a href="http://en.wikipedia.org/wiki/FIGlet" rel="nofollow">FIGlet</a>. 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.</p> <p>Such as:</p> <pre> ______ __ ____ _____ / __/ /____ _____/ /__ / __ \_ _____ ____/ _/ /__ _ __ _\ \/ __/ _ `/ __/ '_/ / /_/ / |/ / -_) __/ _/ / _ \ |/|/ / /___/\__/\_,_/\__/_/\_\ \____/|___/\__/_/ /_//_/\___/__,__/ </pre> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/74359#74359 2 Answer by Peter for Practical non-image based CAPTCHA approaches? Peter 2008-09-16T16:41:55Z 2008-09-16T16:41:55Z <p>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. </p> <p>To rephrase the summary from the jQuery article:</p> <ol> <li>When generating the contact form on the server ...</li> <li>Grab the current time.</li> <li>Combine that timestamp, plus a secret word, and generate a 32 character 'hash' and store it as a cookie on the visitor's browser.</li> <li>Store the hash or 'token' timestamp in a hidden form tag.</li> <li>When the form is posted back, the value of the timestamp will be compared to the 32 character 'token' stored in the cookie.</li> <li>If the information doesn't match, or is missing, or if the timestamp is too old, stop execution of the request ...</li> </ol> <p>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.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/74564#74564 0 Answer by defmeta for Practical non-image based CAPTCHA approaches? defmeta 2008-09-16T17:01:48Z 2008-09-16T17:01:48Z <p>KP's suggestion of the below CAPTCHA is very clever and imageless...</p> <p><a href="http://www.eggheadcafe.com/tutorials/aspnet/79e023b6-124f-4f63-865c-6d357cddbe56/a-better-captcha-control.aspx" rel="nofollow">http://www.eggheadcafe.com/tutorials/aspnet/79e023b6-124f-4f63-865c-6d357cddbe56/a-better-captcha-control.aspx</a></p> <p>I'd vote for this!</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/74569#74569 5 Answer by Tama for Practical non-image based CAPTCHA approaches? Tama 2008-09-16T17:02:10Z 2008-09-16T17:02:10Z <p>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.</p> <p>Add 2 or more form fields like this:</p> <pre><code>&lt;input type='text' value='' name='botcheck1' class='hideme' /&gt; &lt;input type='text' value='' name='botcheck2' style='display:none;' /&gt; </code></pre> <p>Then css to hide them:</p> <pre><code>.hideme { display: none; } </code></pre> <p>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.</p> <p>There are obviously many more things you can do to make this less exploitable but this is just a basic concept.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/80365#80365 6 Answer by AviD for Practical non-image based CAPTCHA approaches? AviD 2008-09-17T05:47:31Z 2009-02-26T15:28:14Z <p>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. </p> <p>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...</p> <p>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. </p> <p>Typically, for a site with resources of any value to protect, you need a 3-pronged approach:</p> <ul> <li>Throttle responses from authenticated users only, disallow anonymous posts.</li> <li>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...</li> <li>Use server-side heuristic logic to identify spam-like behavior, or better non-human-like behavior.</li> </ul> <p>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. </p> <p>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.</p> <p><hr /></p> <p>CAPTCHA proxy is when they serve your image to users of other sites, e.g. porn, games, etc.</p> <p>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...</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/173973#173973 1 Answer by jetxee for Practical non-image based CAPTCHA approaches? jetxee 2008-10-06T11:39:50Z 2008-10-06T11:39:50Z <h2>The most effective non-image CAPTCHA I happened to fill</h2> <p>When registering for a new hosting, I was called by a hosting compony bot (to my mobile phone) and it spelled three digits. I had to enter those digit to finish registration. This way also decent antiscam protection is provided.</p> <h2>The most unusual CAPTCHA I have seen</h2> <p>Simple Weiqi problems to solve (to comment in a Russian Weiqi blog weiqi.ru/news):</p> <p><a href="http://www.picamatic.com/view/1139255_weiqi-captcha/" rel="nofollow">http://www.picamatic.com/view/1139255_weiqi-captcha/</a></p> <p><a href="http://www.picamatic.com/view/1139255_weiqi-captcha/" rel="nofollow" ></a></p> <p>This is an image-based CAPTCHA though.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/178933#178933 0 Answer by Chris S for Practical non-image based CAPTCHA approaches? Chris S 2008-10-07T15:10:32Z 2008-10-07T15:10:32Z <p>Do lots of these Javascript solutions work with screen readers? And the images minus a meaningful alt attribute probably breaks WCAG</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/179167#179167 0 Answer by iamgoat for Practical non-image based CAPTCHA approaches? iamgoat 2008-10-07T15:55:30Z 2008-10-07T15:55:30Z <p>One way I know of to weed out bots is to store a key in the user's cookie and if the key or cookie doesn't existing assume they're a bot and ignore them or fall back in image CAPTCHA. It's also a really good way of preventing a bunch of sessions/tracking being created for bots that can add a lot of noise to your DB or overhead to your system performance.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/182038#182038 0 Answer by Chris S for Practical non-image based CAPTCHA approaches? Chris S 2008-10-08T10:22:04Z 2008-10-08T10:22:04Z <p>One thing that is baffling is how Google, apparently the company with the most CS PHDs in the world can have their Captcha broken, and seem to do nothing about it.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/196892#196892 0 Answer by Midhat for Practical non-image based CAPTCHA approaches? Midhat 2008-10-13T06:58:02Z 2008-10-13T07:03:51Z <p>post a math problem as an IMAGE , probably with paranthesis for clarity</p> <p>just clearly visible text in an image. (2+5)*2</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/228261#228261 0 Answer by Stefan for Practical non-image based CAPTCHA approaches? Stefan 2008-10-23T01:55:23Z 2008-10-23T01:55:23Z <p>Not the most refined anti-spam weapon, but hey, Microsoft endorsed:</p> <p>Nobot-Control (part of AjaxControlToolkit).</p> <blockquote> <p>NoBot can be tested by violating any of the above techniques: posting back quickly, posting back many times, or disabling JavaScript in the browser.</p> </blockquote> <p>Demo:</p> <p><a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/NoBot/NoBot.aspx" rel="nofollow">http://www.asp.net/AJAX/AjaxControlToolkit/Samples/NoBot/NoBot.aspx</a></p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/262068#262068 14 Answer by Jeremiah for Practical non-image based CAPTCHA approaches? Jeremiah 2008-11-04T14:32:27Z 2008-11-04T14:32:27Z <p>I saw this once on a friend's site. He is selling it for 20 bucks. It's ASCII art!</p> <p><a href="http://thephppro.com/products/captcha/" rel="nofollow">http://thephppro.com/products/captcha/</a></p> <pre><code> .oooooo. oooooooo d8P' `Y8b dP""""""" 888 888 d88888b. 888 888 V `Y88b ' 888 888 ]88 `88b d88' o. .88P `Y8bood8P' `8bd88P' </code></pre> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/262122#262122 0 Answer by Sergio Acosta for Practical non-image based CAPTCHA approaches? Sergio Acosta 2008-11-04T15:18:12Z 2008-11-04T15:18:12Z <p>You don't only want humans posting. You want humans that can discuss programming topics. So you should have a trivia captcha with things like:</p> <p>What does the following C function declaration mean: <code>char *(*(**foo [][8])())[];</code> ?</p> <p>=)</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/262936#262936 1 Answer by Airsource Ltd for Practical non-image based CAPTCHA approaches? Airsource Ltd 2008-11-04T18:53:10Z 2008-11-04T18:59:08Z <p>Simple maths is not the answer - the spammer doesn't even need to write a simple parser. <a href="http://www.google.com/search?hl=en&amp;q=seven+minus+3+times+2&amp;btnG=Search" rel="nofollow">Google will do it for them, even if you use words instead of number so it just requires a quick search on google, and it's done.</p> <p>It can do text to numerical conversions easily too</a>.</p> <p>There seems to be some sort of bug in SO's rendering as it's only showing the first link when this is posted, even though preview works properly. The second link is - go to google, and search for "1 * forty-two"</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/263018#263018 0 Answer by myg204 for Practical non-image based CAPTCHA approaches? myg204 2008-11-04T19:11:58Z 2008-11-04T19:11:58Z <p>Which color is the fifth word of this sentence? red?, blue, green?</p> <p>(color words adequately)</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/263090#263090 0 Answer by spotcatbug for Practical non-image based CAPTCHA approaches? spotcatbug 2008-11-04T19:32:17Z 2008-11-04T19:32:17Z <p>If the main issue with not using images for the captcha is the CPU load of creating those images, it may be a good idea to figure out a way to create those images when the CPU load is "light" (relatively speaking). There's no reason why the captcha image needs to be generated at the same time that the form is generated. Instead, you could pull from a large cache of captchas, generated the last time server load was "light". You could even reuse the cached captchas (in case there's a weird spike in form submissions) until you regenerate a bunch of new ones the next time the server load is "light".</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/267502#267502 0 Answer by Harry for Practical non-image based CAPTCHA approaches? Harry 2008-11-06T02:43:12Z 2008-11-06T02:43:12Z <p>I think a custom made CAPTCHA is your best bet. This way it requires a specifically targeted bot/script to crack it. This effort factor should reduce the number of attempts. Humans are lazy afterall</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/274045#274045 1 Answer by Brawndo for Practical non-image based CAPTCHA approaches? Brawndo 2008-11-07T23:56:51Z 2008-11-07T23:56:51Z <p><a href="http://recaptcha.net" rel="nofollow">reCAPTCHA</a> University sponsored and helps digitize books.</p> <blockquote> <p>We generate and check the distorted images, so you don't need to run costly image generation programs.</p> </blockquote> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/280353#280353 0 Answer by Khnle for Practical non-image based CAPTCHA approaches? Khnle 2008-11-11T08:42:32Z 2008-11-11T08:42:32Z <p>I have a couple of solutions, one that requires JavaScript and another one that does not. Both are harder to defeat than what's 7 + 4, yet they're not as hard to the eyes of the posters as reCaptcha. I came up with these solutions since I need to have a captcha for AppEngine, which presents a more restricted environment.</p> <p>Anyway here's the link to the demo: <a href="http://kevin-le.appspot.com/extra/lab/captcha/" rel="nofollow">http://kevin-le.appspot.com/extra/lab/captcha/</a></p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/286926#286926 1 Answer by José Leal for Practical non-image based CAPTCHA approaches? José Leal 2008-11-13T13:41:46Z 2008-11-13T13:41:46Z <p>I know that no one will read this, but what about the <strong>dog or cat</strong> CAPTCHA? </p> <p>You need to say which one is a cat or a dog, machines can't do this.. <a href="http://research.microsoft.com/asirra/" rel="nofollow">http://research.microsoft.com/asirra/</a> </p> <p>Is a cool one..</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/396351#396351 0 Answer by Pies for Practical non-image based CAPTCHA approaches? Pies 2008-12-28T16:17:29Z 2008-12-28T16:17:29Z <p>How about a CSS based captcha?</p> <pre><code>&lt;div style="position:relative;top:0;left:0"&gt; &lt;span style="position:absolute;left:4em;top:0"&gt;E&lt;/span&gt; &lt;span style="position:absolute;left:3em;top:0"&gt;D&lt;/span&gt; &lt;span style="position:absolute;left:1em;top:0"&gt;B&lt;/span&gt; &lt;span style="position:absolute;left:0em;top:0"&gt;A&lt;/span&gt; &lt;span style="position:absolute;left:2em;top:0"&gt;C&lt;/span&gt; &lt;/div&gt; </code></pre> <p>This displays "ABCDE". Of course it's still easy to get around using a custom bot.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/396747#396747 0 Answer by Peter Rounce for Practical non-image based CAPTCHA approaches? Peter Rounce 2008-12-28T22:07:49Z 2008-12-28T22:07:49Z <p>The image could be created on the client side from vector based information passed from the server.</p> <p>This should reduce the processing on the server and the amount of data passed down the wire.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/396842#396842 0 Answer by Cameron MacFarland for Practical non-image based CAPTCHA approaches? Cameron MacFarland 2008-12-28T23:21:29Z 2008-12-28T23:21:29Z <p>Just be careful about cultural bias in any question based captcha.</p> <p><a href="http://wilderdom.com/personality/intelligenceCulturalBias.html" rel="nofollow">Bias in Intelligence Testing</a></p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/396924#396924 0 Answer by IChrisI for Practical non-image based CAPTCHA approaches? IChrisI 2008-12-29T01:02:49Z 2008-12-29T01:02:49Z <p>I recommend trivia questions. Not everybody can understand ASCII representations of letters, and math questions with more than one operation can get confusing.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/396934#396934 0 Answer by Jeff Hubbard for Practical non-image based CAPTCHA approaches? Jeff Hubbard 2008-12-29T01:12:17Z 2008-12-29T01:12:17Z <p>The best CAPTCHA systems are the ones that abuse the P=NP problems in computer science. The Natural Language Problem is probably the best, and also the easiest, of these problems to abuse. Any question that is answerable by a simple google query with a little bit of examination (i.e. What's the second planet in our solar system? is a good question, whereas 2 + 2 = ? is not) is a worthy candidate in that situation.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/478277#478277 0 Answer by Jacek Ławrynowicz for Practical non-image based CAPTCHA approaches? Jacek Ławrynowicz 2009-01-25T21:00:45Z 2009-01-25T21:00:45Z <p>What about displaying captchas using styled HTML elements like divs? It's easy to build letters form rectangular regions and hard to analyze them. </p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/524105#524105 3 Answer by jwendl for Practical non-image based CAPTCHA approaches? jwendl 2009-02-07T16:50:30Z 2009-02-07T16:50:30Z <p>I personally do not like CAPTCHA it harms usability and does not solve the security issue of making valid users invalid. </p> <p>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.</p> <p>Davies, N., Mehdi, Q., Gough, N. : Creating and Visualising an Intelligent NPC using Game Engines and AI Tools <a href="http://www.comp.glam.ac.uk/ASMTA2005/Proc/pdf/game-06.pdf" rel="nofollow">http://www.comp.glam.ac.uk/ASMTA2005/Proc/pdf/game-06.pdf</a></p> <p>Golle, P., Ducheneaut, N. : Preventing Bots from Playing Online Games &lt;-- ACM Portal</p> <p>Ducheneaut, N., Moore, R. : The Social Side of Gaming: A Study of Interaction Patterns in a Massively Multiplayer Online Game</p> <p>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 <em>Robot Wars: An In-Game Exploration of Robot Identification</em>. 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.</p> <p>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.</p> <p>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. </p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/524690#524690 1 Answer by Norman Ramsey for Practical non-image based CAPTCHA approaches? Norman Ramsey 2009-02-07T22:09:01Z 2009-02-07T22:09:01Z <p>Simple text sounds great. <strong>Bribe the community to do the work!</strong> If you believe, as I do, that SO rep points measure a user's commitment to helping the site succeed, it is completely reasonable to offer reputation points to help protect the site from spammers.</p> <p>Offer +10 reputation for each contribution of a simple question and a set of correct answers. The question should suitably far away (edit distance) from all existing questions, and the reputation (and the question) should gradually disappear if people can't answer it. Let's say if the failure rate on correct answers is more than 20%, then the submitter loses one reputation point per incorrect answer, up to a maximum of 15. So if you submit a bad question, you get +10 now but eventually you will net -5. Or maybe it makes sense to ask a sample of users to vote on whether the captcha questionis a good one.</p> <p>Finally, like the daily rep cap, let's say no user can earn more than 100 reputation by submitting captcha questions. This is a reasonable restriction on the weight given to such contributions, and it also may help prevent spammers from seeding questions into the system. For example, you could choose questions not with equal probability but with a probability proportional to the submitter's reputation. Jon Skeet, please don't submit any questions :-)</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/550385#550385 0 Answer by BBetances for Practical non-image based CAPTCHA approaches? BBetances 2009-02-15T05:44:16Z 2009-02-15T05:44:16Z <p>How about just using ASP.NET AJAX NoBot? Seems to work DECENTLY for me. Not awesomely great, but decently.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/568820#568820 0 Answer by Jonathan Parker for Practical non-image based CAPTCHA approaches? Jonathan Parker 2009-02-20T09:09:13Z 2009-03-05T05:27:59Z <p>I would do a simple time based captcha.</p> <p>Javascript enabled: Check post time minus load time greater than HUMANISVERYFASTREADER.</p> <p>Javascript disabled: Time HTTP request begins minus time HTTP response ends (store in session or hidden field) greater than HUMANISVERYFASTREADER plus NETWORKLATENCY times 2.</p> <p>In either case if it returns true then you redirect to a image captcha. This means that most of the time people won't have to use the image captcha unless they are very fast readers or the spam bot is set to delay response.</p> <p>Note that if using a hidden field I would use a random id name for it in case the bot detects that it's being used as a captcha and tries to modify the value.</p> <p>Another completely different approach (which works only with JavaScript) is to use the jQuery Sortable function to allow the user to sort a few images. Maybe a small 3x3 puzzle.</p> <p><a href="http://jqueryui.com/demos/sortable/#display-grid" rel="nofollow">http://jqueryui.com/demos/sortable/#display-grid</a></p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/590116#590116 0 Answer by Chris S for Practical non-image based CAPTCHA approaches? Chris S 2009-02-26T11:18:16Z 2009-02-26T11:18:16Z <p>Mixriot.com uses an ascii art captcha (not sure if this is a 3rd party tool)</p> <pre><code> OooOOo .oOOo. o O oO o O O o O O o o o o ooOOo. OoOOo. OooOOo O O O O O o o O o o O `OooO' `OooO' O OooOO </code></pre> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/818609#818609 0 Answer by for Practical non-image based CAPTCHA approaches? 2009-05-04T02:27:28Z 2009-05-04T02:36:03Z <p>Not a technical solution but a theoretical one.</p> <p>1.A word(s) or sound is given. "Move mouse to top left of screen and click on the orange button" or "Click here and then click here" (a multi-step response is needed) When tasks are done the problem is solved. Pick objects that are already on the page to have them click on. Complete at least two actions. </p> <p>Hope this helps. </p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/1000601#1000601 0 Answer by Magnetic_dud for Practical non-image based CAPTCHA approaches? Magnetic_dud 2009-06-16T10:09:37Z 2009-06-16T10:09:37Z <p>I like the captcha as is used in the "great rom network": <a href="http://download.rom-news.org/30b868cefdf7ccb8654e0f4b0241e0e9" rel="nofollow">link text</a></p> <p>Click the colored smile, it is funny and everyone can understand... except bots haha</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/1075968#1075968 0 Answer by pistacchio for Practical non-image based CAPTCHA approaches? pistacchio 2009-07-02T18:31:23Z 2009-07-02T18:31:23Z <p>I think the problem with a textual captcha approach is that text can be parsed and hence answered.</p> <p>If your site is popular (like Stackoverflow) and people that like to code hang on it (like Stackoverflow), chances are that someone will take the "break the captcha" as a challenge that is easy to win with some simple javascript + greasemonkey.</p> <p>So, for example, a <em>hidden colorful letters approach</em> suggested somewhere in the thread (a cool idea, idea, indeed), can be easily broken with a simple parsing of the following example line:</p> <pre><code>&lt;div id = "captcha"&gt; &lt;span class = "red"&gt;s&lt;/span&gt; asdasda &lt;span class = "red"&gt;t&lt;/span&gt; asdff &lt;span class = "red"&gt;a&lt;/span&gt; jeffwerf &lt;span class = "red"&gt;c&lt;/span&gt; sdkk &lt;span class = "red"&gt;k&lt;/span&gt; &lt;/div&gt; </code></pre> <p>Ditto, parsing this is easy:</p> <pre><code>3 + 4 = ? </code></pre> <p>If it follows the schema (x + y) or the like.</p> <p>Similarly, if you have an array of questions (<code>what color is an orange?</code>, <code>how many dwarves surround snowwhite?</code>), unless you have thousands of hundreds of them, one can pick some 30 of them, make a questions-answers hash and make the script bot reload the page until one of the 30 is found.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/1101674#1101674 0 Answer by corymathews for Practical non-image based CAPTCHA approaches? corymathews 2009-07-09T03:15:49Z 2009-07-09T03:15:49Z <p>Just to throw it out there. I have a simple math problem on one of my contact forms that simply asks </p> <p>what is [number 1-12] + [number 1-12]</p> <p>I probably get probably 5-6 a month of spam but I'm not getting that much traffic.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/1101989#1101989 1 Answer by Gordon Potter for Practical non-image based CAPTCHA approaches? Gordon Potter 2009-07-09T05:35:21Z 2009-07-09T08:00:12Z <p>A theoretical idea for a captcha filter. Ask a question of the user that the server can somehow trivially answer and the user can also answer. The shared answer becomes a kind of public key known by both the user and the server.</p> <p>A Stack Overflow related example:</p> <p>How many reputation points does user XYZ have?</p> <p>Hint: look on the side of the screen for this information, or follow this link. The user could be randomly pulled from known stack overflow users.</p> <p>A more generic example: Where do you live? What were the weather conditions at 9:00 on Saturday where you live? Hint: Use yahoo weather and provide humidity and general conditions.</p> <p>Then the user enters their answer</p> <p>Seattle Partly cloudy, 85% humidity</p> <p>The computer confirms that it was indeed those weather conditions in Seattle at that time.</p> <p>The answer is unique to the user but the server has a way of looking up and confirming that answer.</p> <p>The types of questions could be varied. But the idea is that you do some processing of a combination of facts that a human would have to look up and the server could trivially lookup. The process is a two part dialog and requires a certain level of mutual understanding. It is kind of a reverse turning test. Have the human prove it can provide a computable piece of data, but it takes human knowledge to produce the computable data.</p> <p>Another possible implementation. What is your name and when were you born?</p> <p>The human would provide a known answer and the computer could lookup the information in a database.</p> <p>Perhaps a database could be populated by a bot but the bot would need to have some intelligence to put the relevant facts together. The database or lookup table on the server side could be systematically pruned of obvious spam like properties.</p> <p>I am sure that there are flaws and details to be worked out in the implementation. But the concept seems sound. The user provides a combination of facts that the server can lookup, but the server has control over the kind of combinations that should be asked. The combinations could be randomized and the server could use a variety of strategies to lookup the shared answer. The real benefit is that you are asking the user to provide some sort of profiling and revelation of themselves in their answer. This makes it all the more difficult for bots to be systematic. A bunch of computers start using the same answers across many servers and captcha forms such as</p> <p>I am Robot born 1972 at 3:45 pm.</p> <p>Then that kind of response can be profiled and used by a whole network to block the bots, effectively make the automation worthless after a few iterations.</p> <p>As I think about this more it would be interesting to implement a basic reading comprehension test for commenting on blog posts. After the end of a blog post the writer could pose a question to his or her readers. The question could be unique to each blog post and it would have the added benefit of requiring users to actually read before commenting. One could write the simple question at the end of a post with answers stored server side and then have an array of non sense questions to salt the database.</p> <p>Did this post talk about purple captcha technology? Server side answer (false, no)</p> <p>Was this a post about captchas? Server side answer (true, yes)</p> <p>Was this a post about Michael Jackson? Server side answer (false, no)</p> <p>It seems useful to have several questions presented in random order and make the order significant. e.g. the above would = no, yes, no. Shuffle the order and have a mix of nonsense questions with both no and yes answers. </p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/1102266#1102266 0 Answer by Juergen Brendel for Practical non-image based CAPTCHA approaches? Juergen Brendel 2009-07-09T07:08:50Z 2009-07-09T07:08:50Z <p>Some here have claimed solutions that were never broken by a bot. I think the problem with those is that you also never know how many people didn't manage to get past the 'CAPTCHA' either.</p> <p>A web-site cannot become massively unfriendly to the human user. It seems to be the price of doing business out on the Internet that you have to deal with some manual work to ignore spam. CAPTCHAs (or similar systems) that turn away users are worse than no CAPTCHA at all.</p> <p>Admittedly, StackOverflow has a very knowledgeable audience, so a lot more creative solutions can be used. But for more run-of-the-mill sites, you can really only use what people are used to, or else you will just cause confusion and lose site visitors and traffic. In general, CAPTCHAs shouldn't be tuned towards stopping all bots, or other attack vectors. That just makes the challenge too difficult for legitimate users. Start out easy and make it more difficult until you have spam levels at a somewhat manageable level, but not more.</p> <p>And finally, I want to come back to image based solutions: You don't need to create a new image every time. You can pre-create a large number of them (maybe a few thousand?), and then slowly change this set over time. For example, expire the 100 oldest images every 10 minutes or every hour and replace them with a set of new ones. For every request, randomly select a CAPTCHA from the overall set.</p> <p>Sure, this won't withstand a directed attack, but as was mentioned here many times before, most CAPTCHAs won't. It will be sufficient to stop the random bot, though.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/1107845#1107845 0 Answer by phalacee for Practical non-image based CAPTCHA approaches? phalacee 2009-07-10T05:24:49Z 2009-07-10T05:24:49Z <p>I really like the method of captcha used on this site: <a href="http://www.thatwebguyblog.com/post/the_forgotten_timesaver_photoshop_droplets#commenting_as" rel="nofollow">http://www.thatwebguyblog.com/post/the_forgotten_timesaver_photoshop_droplets#commenting_as</a></p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/1124868#1124868 0 Answer by Chris S for Practical non-image based CAPTCHA approaches? Chris S 2009-07-14T11:42:56Z 2009-07-14T11:42:56Z <p><a href="http://www.webdesignbeach.com/beachbar/wordpress-plugin-ajax-fancy-captcha" rel="nofollow">Ajax Fancy Captcha</a> sort of image based, except you have to drag and drop based on shape recognition instead of typing the letters/numbers contained on the image.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/1324638#1324638 0 Answer by Runeborg for Practical non-image based CAPTCHA approaches? Runeborg 2009-08-24T20:41:44Z 2009-08-24T20:41:44Z <p>I had an idea when I saw a video about <a href="http://video.google.com/videoplay?docid=-8246463980976635143" rel="nofollow">Human Computation</a> (the video is about how to use humans to tag images through games) to build a captcha system. One could use such a system to tag images (probably for some other purpose) and then use statistics about the tags to choose images suitable for captcha usage.</p> <p>Say an image where >90% of the people have tagged the image with 'cat' or 'skyscraper'. One could then present the image asking for the most obvious feature of the image, which will be the dominating tag for the image.</p> <p>This is probably out of scope for SO, but someone might find it an interesting idea :)</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/1332576#1332576 0 Answer by Ramesh Vel for Practical non-image based CAPTCHA approaches? Ramesh Vel 2009-08-26T05:50:37Z 2009-08-26T05:50:37Z <p>Hi, </p> <p>Am sure most of the pages build with the controls (buttons, links etc) which supports mouseovers. </p> <ul> <li>Instead of showing images and and ask the user to type the content, ask the user to move the mouse over to any control (pick the control in random order (any button or link))</li> <li>And apply the color to the control (some random color) on mouse over (little javascript do the trick).. </li> <li>then let the user to enter the color what he s seen on mouse over.</li> </ul> <p>Its just an different approach, i dint actually implemented this approach. But this is possible.</p> <p>Cheers</p> <p>Ramesh vel</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/1603989#1603989 0 Answer by Bob Aman for Practical non-image based CAPTCHA approaches? Bob Aman 2009-10-21T22:19:46Z 2009-10-21T22:35:48Z <p>Make an AJAX query for a cryptographic nonce to the server. The server sends back a JSON response containing the nonce, and also sets a cookie containing the nonce value. Calculate the SHA1 hash of the nonce in JavaScript, copy the value into a hidden field. When the user POSTs the form, they now send the cookie back with the nonce value. Calculate the SHA1 hash of the nonce from the cookie, compare to the value in the hidden field, and verify that you generated that nonce in the last 15 minutes (memcached is good for this). If all those checks pass, post the comment.</p> <p>This technique requires that the spammer sits down and figures out what's going on, and once they do, they still have to fire off multiple requests and maintain cookie state to get a comment through. Plus they only ever see the <code>Set-Cookie</code> header if they parse and execute the JavaScript in the first place and make the AJAX request. This is far, far more work than most spammers are willing to go through, especially since the work only applies to a single site. The biggest downside is that anyone with JavaScript off or cookies disabled gets marked as potential spam. Which means that moderation queues are still a good idea.</p> <p>In theory, this could qualify as security through obscurity, but in practice, it's excellent.</p> <p>I've never once seen a spammer make the effort to break this technique, though maybe once every couple of months I get an on-topic spam entry entered by hand, and that's a little eerie.</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/1610021#1610021 0 Answer by James Morris for Practical non-image based CAPTCHA approaches? James Morris 2009-10-22T21:20:42Z 2009-10-22T21:20:42Z <p>Here's my captcha effort:</p> <pre><code>The security number is a spam prevention measure and is located in the box of numbers below. Find it in the 3rd row from the bottom, 3rd column from the left. 208868391 241766216 283005655 316184658 208868387 241766212 241766163 283005601 316184603 208868331 241766155 283005593 241766122 283005559 316184560 208868287 241766110 283005547 316184539 208868265 241766087 283005523 316184523 208868249 208868199 241766020 283005455 316184454 208868179 241766000 316184377 208868101 241765921 283005355 316184353 208868077 </code></pre> <p>Of course the numbers are random as is the choice of row and collumn and the choice of left/right top/bottom. One person who left a comment told me the 'security question sucks dick btw':</p> <p><a href="http://jwm-art.net/dark.php?p=louisa%5Fskit" rel="nofollow">http://jwm-art.net/dark.php?p=louisa_skit</a></p> <p>to see in action click 'add comment'.</p>