Slashdot Mirror


Campaign To Kill CAPTCHA Kicks Off

Bismillah writes "CAPTCHA may be popular with webmasters and others running different sites, but it's a source of annoyance to blind and partially sighted people — and dyslexic people and older ones — who often end up being locked out of important websites as they can't read wonky, obfuscated letters any more than spambots can. A campaign in Australia has started to rid sites of CAPTCHA to improve accessibility for everyone."

558 comments

  1. Protection against drunk posting by Anonymous Coward · · Score: 2, Funny

    Makes it useful.

    1. Re:Protection against drunk posting by Richy_T · · Score: 4, Funny

      I often need three stiff drinks just to be able to read the things.

    2. Re:Protection against drunk posting by WaywardGeek · · Score: 1

      I've had four stiff drinks, and I can tell you that captchas still piss me off. I've got some crazy stupid central vision loss disorder, which is a real pisser for a professional programmer, but at least I'm not a surgeon. Captchas should be replaced with simple questions that currently only humans answer reliably. For example, "What color is the sky on a clear sunny day?". My site occasionally gets wise-guys answering "pink... on Mars".

      --
      Celebrate failure, and then learn from it - Nolan Bushnell
    3. Re:Protection against drunk posting by RedHackTea · · Score: 1

      stiff drinks? Is this an Aussie thing or an alternative to viagra?

      --
      The G
    4. Re:Protection against drunk posting by ultrasawblade · · Score: 1

      How many unique such questions can you generate automatically?

      Part of the advantage of a CAPTCHA based on random sequences of letters and numbers is that if done right it should be impossible to build a database of all possible CAPTCHAs and correlate them with anything the CAPTCHA generator creates.

    5. Re:Protection against drunk posting by philip.paradis · · Score: 1

      No, a stiff drink is what happens after the Viagra, but there's a bit of pump priming required as well.

      --
      Write failed: Broken pipe
    6. Re:Protection against drunk posting by tsalmark · · Score: 2

      I think in all of N.A. a stiff drink is any hard liqueur, with or with out ice.

    7. Re:Protection against drunk posting by bratwiz · · Score: 1

      Not to mention automatically OCR every book ever written... some Project Gutenberg sneakiness...? You be the judge.

    8. Re:Protection against drunk posting by hairyfeet · · Score: 1

      You don't need to, because i thought we already solved this problem with kittenauth ages ago? I mean with kittenauth any human can tell you "Which kitten has a black patch on the right eye" or "Which kitten has a bobtail" but a spambot isn't gonna be able to figure out squat from that. Of course i suppose you could pay some Chinese a buck an hour to answer but you could do that to CAPTCHA as well, and at least this way we get to see kittens.

      --
      ACs don't waste your time replying, your posts are never seen by me.
    9. Re:Protection against drunk posting by Anonymous Coward · · Score: 0

      This, too, only works because nobody cares about it.

      If computer can't identify "a kitten has a bobtail", it can't make up a question about it.

      If it can't make up a question, a human has to go through photo collection and and make them up.

      If human makes up questions, there will be limited number of captchas - as opposed to arbitrary large number of randomly generated ones.

      If there's limited number of captchas, spammer can just teach the bot answers to few dozens of those and let it just hit F5 and wait for familiar one to come up. Refreshing repeatedly to look at cat pics is not something you'd ban users for, and limits won't help with spammers having hundreds of thousands and millions IPs to "hit F5" from.

    10. Re:Protection against drunk posting by plover · · Score: 1

      Don't try to beat them all in advance. Spammers have shown they will adapt.

      Instead, the key is to update CAPTCHAs only in response to an automated spammer breaking through. Offer ten rotating questions today. If the robots get through, offer ten different rotating questions tomorrow. Make it expensive for the spammers to continually update their robots, and make it cheap for you to update your questions. Beat the spammers on cost.

      --
      John
  2. spammers around the world rejoice by Anonymous Coward · · Score: 0

    No replacement is mentioned in the article, just the drawbacks of the existing scheme.

    1. Re:spammers around the world rejoice by Anonymous Coward · · Score: 0

      Yes there is, email. Which is a joke of a solution by someone that does not understand the problem.

  3. How else do I protect my forms by Anonymous Coward · · Score: 1

    from automated submissions?

    1. Re:How else do I protect my forms by wierd_w · · Score: 2

      Make it time prohibitive?

      Prevent "5ns form posting" with a cooloff time, and also cache submitted forms from an IP address to prevent duplicates.

      You can also implement a 50 message per day limit, and reduce as needed to stop spammers.

    2. Re:How else do I protect my forms by Anonymous Coward · · Score: 0, Flamebait

      from automated submissions?

      If you don't know any alternatives, you shouldn't be administering them.

    3. Re:How else do I protect my forms by Anonymous Coward · · Score: 3, Interesting

      What if I want my users to be able to post the form more than 50 times per day?
      Cooldowns and cacheing just wont do it. The only real alternative I see is to hide the form behind a login, which in the end is more inconvenient for the end user than a user friendly captcha.

      There are simple ones that are easy on the eye out there ( like slashdot's ), and you can make your own quite easily as well. There is one widely used one, reCAPTCHA I think, that is just awful and should be avoided.

    4. Re:How else do I protect my forms by Anonymous Coward · · Score: 0

      Spammers have millions of computers at their disposal via botnets, none of these proposals would work at all.

    5. Re:How else do I protect my forms by greenreaper · · Score: 1

      Unfortunately it's not all coming from a single IP address - there are literally thousands out there - and any one would only post as regularly as a standard user, with randomized text from large templates. You stop them at various layers - DNSBLs, CAPTCHAs, form entry field checks, link checks, specific spam text . . .

    6. Re:How else do I protect my forms by Anonymous Coward · · Score: 2, Interesting

      from automated submissions?

      If you don't know any alternatives, you shouldn't be administering them.

      Yeah, I guess the folks at Google, Yahoo, Microsoft, Amazon etc don't know what they are doing either. Captcha is used because there is no real alternative if you want anonymous form submissions on your site. There are certain measures we can put in place, in certain contexts, but no catch all one size solution.

    7. Re:How else do I protect my forms by amicusNYCL · · Score: 5, Insightful

      Add some fields which start out as regular text fields but then hide them with Javascript. You can give them labels or default values like "Don't change this" in case someone doesn't have Javascript enabled. Give the real fields in your form random names. For the hidden fields, give them names like "subject" or "comments" or "url" (don't use common names for personal info like "email", "fname" etc that the browser might automatically fill out). When they submit the form, check for values in those hidden fields (either any value at all, or a value different than the default). If they are filled out, reject the form. Hiding the fields with Javascript will work for virtually everyone and it doesn't require real people to do anything extra. This will fail against bots that bother to actually render the page or bots that specifically target your site (which can be remedied if you randomize all field names and store the random names in the session to match them up when the form gets submitted), but those are far less common than bots that just get the HTML and parse it to look for form actions and field names.

      --
      "Our two-party system is like a bowl of shit looking at itself in a mirror." - Lewis Black
    8. Re:How else do I protect my forms by Anonymous Coward · · Score: 0

      This will break page cacheing for pages with forms though. I would have to give my anonymous users session cookies, and store the values of those fields. It also doesn't work if someone writes a script designed specifically for my site.
      It's a half-measure.

    9. Re:How else do I protect my forms by Anonymous Coward · · Score: 1

      This wont work. Just like in the real world, if you have a secret, and I know how you are storing your secret, you lose.

      If the code representing Captcha is as you describe, it becomes easier to parse the javascript to find the names and submit the form. So now the captha needs to be a mutating algorithm to defeat this and now the bad guys are going to work out the random seed in your code to allow them to predict the next form sequence. Now you avoid anything computablly random (how?!) and now brute force is used to DOS the site.

      It really isnt easy. Captcha is darn annoying when it locks out 99% of the users, and we have a life ahead trying to outwit the bad guys or good guys.

    10. Re:How else do I protect my forms by tftp · · Score: 1

      You cannot stop a social problem with a technological measure. If all fails, the spammer will hire 10,000 people in Africa to post spam using cut and paste templates.

      A partial solution can be achieved only if each poster has to authenticate with the server using a globally unique ID that is assigned to that person at birth. Then if that person abuses their right to post, you can kick them by that ID - and they have no other ID to use. In the end spammers will run out of willing workers.

      Naturally, religionists will have a problem with their panties, but it is indeed strange that people don't have a planet-wide ID. They should have it; then so many problems would disappear. (and new ones appear.)

    11. Re:How else do I protect my forms by IamTheRealMike · · Score: 2

      Google et al don't rely on CAPTCHAs exclusively, at least not for important things. Google accounts uses phone verification driven by some very sophisticated analyses of the signup data. You can actually choose to skip the CAPTCHA on Google signup if you like, phone verification is used as a replacement.

    12. Re:How else do I protect my forms by Anonymous Coward · · Score: 0

      This is trivially defeated by anyone spending more than 20 seconds reading the source of your webpage. Hell, most spambots can handle js-hidden fields anyway these days, so it's probably done automatically as part of the spider.

    13. Re:How else do I protect my forms by EvanED · · Score: 1

      Add some fields which start out as regular text fields but then hide them with Javascript.

      How is this harder to break than CAPTCHAs? I mean, CAPTCHAs are (or maybe were) actually a decent research question for how to get OCR resilient enough to solve them, or you have to figure out how to hijack other people to solve them for you. By contrast, ignoring fields that are hidden by Javascript seems like... 10 minutes of engineering.

      OK, I'm exaggerating a bit. But I really don't see the difficulty there, especially when you start putting in "don't change this" for people sometimes like me with JS off.

      You say that bots that pay attention to that aren't common now, but bots that do a decent job at solving CAPTCHAs also seem relatively rare, and if the "hidden fields" became as popular as CAPTCHAs are now I bet you'd see a lot more of them...

      [targeted bots] can be remedied if you randomize all field names

      And now you've broken form autofilling, which means that real people now need to fill out a lot more fields than they do if you have a CAPTCHA.

      (Obviously not every form benefits from filling out, but I bet a lot of the ones where you'd see a CAPTCHA do.)

    14. Re:How else do I protect my forms by amicusNYCL · · Score: 2

      Defeating a human reading the source code is not the point. The point is to defeat a bot reading the source code. Another solution that was pointed out was to use CSS to target the hidden element's parent and hide that through regular CSS, which would eliminate the Javascript. Now you're talking about a bot that renders the entire page and fills out the form visually, which is not common (if done at all).

      --
      "Our two-party system is like a bowl of shit looking at itself in a mirror." - Lewis Black
    15. Re:How else do I protect my forms by Anonymous Coward · · Score: 0

      Well then it's not anonymous, now is it?

    16. Re:How else do I protect my forms by amicusNYCL · · Score: 1

      And now you've broken form autofilling, which means that real people now need to fill out a lot more fields than they do if you have a CAPTCHA.

      That's true. It's not really necessary to randomize all of the fields, but it makes another good test if none of the regular fields are filled out or if they all have the same text in them. It's really only necessary to add fields with certain names that would trigger a bot to fill them out ("subject", "message", "comments", etc), and another suggestion was made to use CSS to target the field's parent element and hide that, which wouldn't require Javascript.

      I think it's worth spending time on though, I use it for all of the contact forms I set up and it does a good job to stop spam. The best thing about it is that "normal" users never even come into contact with it, they don't even see it. The hidden field thing would need to be tested with screen readers though to make sure they also don't pick up the hidden fields. It also counts on bots being lazy and not actually rendering the page, which they might end up doing.

      --
      "Our two-party system is like a bowl of shit looking at itself in a mirror." - Lewis Black
    17. Re:How else do I protect my forms by Anonymous Coward · · Score: 0

      That's assuming the blind have javascript-enabled browsers and spam-bots don't. No idea whether either of those assumptions is true...

    18. Re:How else do I protect my forms by Macgrrl · · Score: 1

      The only real alternative I see is to hide the form behind a login, which in the end is more inconvenient for the end user than a user friendly captcha.

      That's the catch though, "user friendly captcha"s. Most of the time I encounter them I need to generate at least 4 of them before I encounter one I can actually read. And my eye sight is reasonably good.

      That's before you take into account visually impaired users who are trying to do it from an audio queue.

      --
      Sara
      Designer, Gamer, Macgrrl in an XP World
    19. Re:How else do I protect my forms by Anonymous Coward · · Score: 0

      Or just use a client-side contact form (created using this generator)

    20. Re:How else do I protect my forms by Anonymous Coward · · Score: 0

      Why do you think bots contain enough artificial intelligence to parse HTML and guess at what information to put in fields according to the field names? That computer they had playing Jeopardy might be smart enough for that, but if I saw my PC do anything 1% as smart as that I'd shit my pants. Sure, it might occasionally encounter a web site with predictable-enough field names, but it would fail in the majority of cases just by the semi-random names people use by default. I have a difficult enough time making sense of other people's code. Trying to write a computer program to do it would be hopeless.

      Bots don't work like that. They're written to target specific software. Whatever that software uses for its field names, the bot is written to look for that. Whatever fields are supposed to be ignored, the bot is written to ignore them. Even if the field names are generated randomly, it'll be written to pull a copy of the form and extract the random field names.

      This is why you occasionally see a registration page with a question like "what is 3 + 4?" These questions aren't a standard part of the software package, but something added by the web site owners. The numbers aren't even randomly generated, it's just a static question. It doesn't matter how trivial the question is, just that it disturbs the registration process enough that a bot written to target the software used on that web site isn't compatible with the change that the web site owner made to the software. On my own web site I added a question which reads "please type 'spam' in this box" to a popular forum software which ended my problem with spam on the site despite the fact that it's probably the most generic question a bot could ever be asked to answer. Bots simply cannot do things they haven't been explicitly coded to do. Of course, if the same question were added to the official software, it wouldn't help at all, since the bots used to spam that software would then be updated to answer the question.

      This is also why you have countless people who have their own personal magic method of defeating spam that has always worked just fine for them. Anything will work as long as your software isn't used on a lot of web sites. I have a forum which doesn't even require creation of an account to post a message, and it's been online for ten years without a single spam message. Someone could easily write a bot to spam the hell out of it, but since the software that forum uses runs only on my web site, it wouldn't be worth their time. I'd delete the messages, block their IP, and that would be the end of that. However, if I distributed the software and it was run on 10,000 web sites, then even after you account for half of the web site operators dealing with the spam problem, you still have 5,000 web sites displaying your spam, and so writing a bot to exploit the software is now a worthwhile thing to do.

    21. Re:How else do I protect my forms by Anonymous Coward · · Score: 0

      So you are basically hoping that no one with the skill to break it will bother doing so.
      If thats all you are aiming for, there are far simpler solutions, like hashing the form on both client and server side.
      Same level of security, 1/8 the work.

    22. Re:How else do I protect my forms by ArcadeMan · · Score: 1

      Spammers have millions of low-wage users at their disposal, none of these proposals will ever work.

      FTFY

    23. Re:How else do I protect my forms by petermgreen · · Score: 1

      Prevent "5ns form posting" with a cooloff time,

      That helps to a point but if it becomes too common spammers will just design their spambots to work with whatever delays are commonly used. It means keeping a little more state in the spambot.

      and also cache submitted forms from an IP address to prevent duplicates.

      That helps to a point but if it becomes too common website spammers will just add message mangling just like email spammers do today.

      You can also implement a 50 message per day limit, and reduce as needed to stop spammers.

      50 messages per what per day?

      50 messages per IP per day would cause a lot of pain to users stuck behind large scale NATs and probablly wouldn't impede the spammers too much, they often have an army of IPs under their control. 50 messages per user account per day would just cause the spammers to register lots of user accounts.

      The problem with a lot of "clever" soloutions to spam is they work fine as long as their userbase is too small for the spammers to care. Once their userbase becomes big enough though the spammers will start putting real effort into attacking them.

      --
      note: i'm known as plugwash most places but i screwd up registering that here somehow in the past and now can't register
    24. Re:How else do I protect my forms by petermgreen · · Score: 3, Insightful

      You cannot stop a social problem with a technological measure.

      Maybe you can't stop it but you can often reduce it to more manageable levels.

      --
      note: i'm known as plugwash most places but i screwd up registering that here somehow in the past and now can't register
    25. Re:How else do I protect my forms by danbert8 · · Score: 1

      Wouldn't it just be easier to teach people not to buy shit from spammers? Then wouldn't the problem go away?

      --
      Yes it's an anecdote! Were you expecting original research in a Slashdot comment?
    26. Re:How else do I protect my forms by ninlilizi · · Score: 1

      I've found 100% success with a unique solution.

      I've run a Lord of the Rings Online guild website with forum for many years.

      Eventually I set the first input field on the registration page to a combo box for players to enter the class of their character.
      The first and default entry is 'Scammer' ... Any restration attempts that choose this get auto banned.
      Not had a single piece of forum spam ever since.

    27. Re:How else do I protect my forms by tftp · · Score: 1

      Wouldn't it just be easier to teach people not to buy shit from spammers?

      This is about just as easy as to teach people not to send spam.

      The fact is that exactly 50% of the population have IQ below average. They operate with what is available to them. Some are only smart enough to send spam; other are not even as good, they read it and believe what they see. Some can't even read cursive :-) I can't imagine what avenues are open to those.

    28. Re:How else do I protect my forms by philip.paradis · · Score: 1

      Millions of people are stupid enough to buy prescription medications of highly dubious origins and formulation from spammers. Every now and again you'll see a news piece about some idiot winding up hospitalized or dead as a result. This is a fine demonstration of a level of stupidity that you simply cannot overcome.

      --
      Write failed: Broken pipe
    29. Re:How else do I protect my forms by vux984 · · Score: 1

      What if I want my users to be able to post the form more than 50 times per day?
      Cooldowns and cacheing just wont do it. The only real alternative I see is to hide the form behind a login, which in the end is more inconvenient for the end user than a user friendly captcha.

      If users need to post 50x per day, then logging in isn't going to be more inconvenient than a captcha.

    30. Re:How else do I protect my forms by Anonymous Coward · · Score: 0

      > This will fail against bots that bother to actually render the page

      This is trivial to do with HtmlUnit (Java-based browser emulation library) -- renders the page, executes Javascript. The bot just has to look which fields are still visible after that.

    31. Re:How else do I protect my forms by ultranova · · Score: 1

      A partial solution can be achieved only if each poster has to authenticate with the server using a globally unique ID that is assigned to that person at birth. Then if that person abuses their right to post, you can kick them by that ID - and they have no other ID to use. In the end spammers will run out of willing workers.

      Thus replacing a minor irritant with every tyrant's wet dream. And it wouldn't even stop spam: spammers would simply use a virus to send their spam from your machine in your name.

      --

      Forget magic. Any technology distinguishable from divine power is insufficiently advanced.

    32. Re:How else do I protect my forms by piripiri · · Score: 1

      a globally unique ID that is assigned to that person at birth

      What? Are you insane?

    33. Re:How else do I protect my forms by LanMan04 · · Score: 1

      Yup, did this years ago to protect against bots submitting our contact forms (Credit Union website).

      I believe we hid the honeypot fields with CSS instead of JS, but either way it was damn effective.

      --
      With the first link, the chain is forged.
  4. Wouldn't it be ironic... by Alejux · · Score: 5, Funny

    If the campaign was taken over by bots?

    1. Re:Wouldn't it be ironic... by Anonymous Coward · · Score: 0

      If the campaign was taken over by bots?

      I can see it now:

      They will have a lend your support and comment board without a CAPTCHA sign-on that will quickly be filled with ads for Viagra and knockoff sport jerseys. Then, the pleas will start from people that the website should do something about their bot problem.

    2. Re:Wouldn't it be ironic... by Anonymous Coward · · Score: 0

      That's an interesting insight and I have also seen campaigns whereby the BIGGEST collection of V149R4 cheaply available for fast courrier directly to you doorstop. Thank you come again.

    3. Re:Wouldn't it be ironic... by Anonymous Coward · · Score: 0

      or rain on your wedding day...

      or maybe a story about doing away with captcha on a site that uses captcha

    4. Re:Wouldn't it be ironic... by Anonymous Coward · · Score: 0

      Recaptcha: welzome overlords

    5. Re:Wouldn't it be ironic... by Anonymous Coward · · Score: 0

      To quote bender:

      That's not ironic, that's coincidental!

    6. Re:Wouldn't it be ironic... by Evil+Pete · · Score: 1

      This is GENIUS! This is one of those ideas that must be implemented.

      --
      Bitter and proud of it.
  5. This is a very hard problem by stewsters · · Score: 3, Insightful

    "W3C has suggested other techniques such as logic puzzles, limited-use accounts and non-interactive checks to prevent abuse such as fraudulent account creation and spamming."

    Its going to be far harder to make an AI that can create a decent logic puzzle as well as make it accessible and hard for computers to solve than it it to make an image and warp it a bit. I think any such puzzle will probably be worse than the audio captcha button.

    1. Re:This is a very hard problem by CanHasDIY · · Score: 3, Funny

      "W3C has suggested other techniques such as logic puzzles, limited-use accounts and non-interactive checks to prevent abuse such as fraudulent account creation and spamming."

      Its going to be far harder to make an AI that can create a decent logic puzzle as well as make it accessible and hard for computers to solve than it it to make an image and warp it a bit. I think any such puzzle will probably be worse than the audio captcha button.

      Not to mention, logic puzzles are unfair to people who have trouble understanding logic; which, in my experience, is damn near the entire human race.

      Just swapping one type of perceived discrimination for another.

      --
      An enigma, wrapped in a riddle, shrouded in bacon and cheese
    2. Re:This is a very hard problem by i+kan+reed · · Score: 5, Funny

      Yeah, but we value what blind people have to say. "Damn near the entire human race" can go fuck themselves.

    3. Re:This is a very hard problem by amorsen · · Score: 4, Insightful

      For every task that a computer is unable to handle, there exists a reasonably well-functioning human who cannot do it either.

      --
      Finally! A year of moderation! Ready for 2019?
    4. Re:This is a very hard problem by Anonymous Coward · · Score: 3, Funny

      That's a feature, not a bug.

    5. Re:This is a very hard problem by king+neckbeard · · Score: 2, Insightful

      It's quite likely that some forums may prefer only letting in people capable of understanding logic, and there aren't any laws against discriminating against those people.

      --
      This is my signature. There are many like it, but this one is mine.
    6. Re:This is a very hard problem by CanHasDIY · · Score: 4, Insightful

      It's quite likely that some forums may prefer only letting in people capable of understanding logic, and there aren't any laws against discriminating against those people.

      Perhaps, but if you're trying to monetize the site you're running you'd be a fool to do something that prevents a good 80-90% of people from accessing it.

      --
      An enigma, wrapped in a riddle, shrouded in bacon and cheese
    7. Re:This is a very hard problem by Zmobie · · Score: 4, Interesting

      I think you're missing the idea of what type of logic puzzles they mean. Simple things like image processing (someone in the comments below brought the example up of using company logos and you type the name, pizza toppings matched to the correct pizza) or natural language processing could be used to WRECK a bot. Imagine this, I pose the question as a human verification, "What color was George Washington's favorite white horse?" A human (with half a brain) easily sees how stupid simple it is to find the answer which is white, but a bot would have hell with that type of question because it involves language processing to determine the appropriate response. That is a pretty simplified example, but you can find these all over the place and they are fairly easy to create.

      Some of these could be defeated easily with something like a call to Wolfram Alpha, but you could quite easily find and create things that are not going to be simple to automate the logic processing, but would be completely trivial for a human to process, even stupid ones. Language and image processing are RIDICULOUSLY difficult to automate efficiently which would defeat the purpose of the bots, while making things a lot easier on the people that do have to deal with this sort of thing. I personally hate the current version of CAPTCHAS (hell, I can't read some of the more difficult ones and I write some of the software that USES them), but I do recognize the need for them. No reason they can't be improved upon though.

    8. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      It's quite likely that some forums may prefer only letting in people capable of understanding logic, and there aren't any laws against discriminating against those people.

      But, but, mental is a handicap too!

    9. Re:This is a very hard problem by tlambert · · Score: 3, Funny

      It's quite likely that some forums may prefer only letting in people capable of understanding logic, and there aren't any laws against discriminating against those people.

      Even if there were, let them take you to court on it, it's not like they're going to be able to make a reasoned complaint, right? ...

    10. Re:This is a very hard problem by Qzukk · · Score: 4, Interesting

      Wolphram Alpha had no idea about the color of Washington's favorite white horse (it looked up the distance between some town named George, WA and White Horse,NJ), but if you put it into google, you discover that Washington had no white horses, the closest being a gray named Blueskin.

      --
      If I have been able to see further than others, it is because I bought a pair of binoculars.
    11. Re:This is a very hard problem by CanHasDIY · · Score: 2

      I think you're missing the idea of what type of logic puzzles they mean.

      ... and here I was thinking that the last half of the statement made it pretty obvious I was being satirical.

      Now, now I'm no longer sure that I was joking...

      --
      An enigma, wrapped in a riddle, shrouded in bacon and cheese
    12. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      "What color was George Washington's favorite white horse?" A human (with half a brain) easily sees how stupid simple it is to find the answer which is white, but a bot would have

      ...answered that question faster than the human competitors on Jeopardy!

      Seriously, what year do you think it is?

    13. Re:This is a very hard problem by mstefanro · · Score: 1

      > someone in the comments below brought the example up of using company logos and you type the name
      Sounds like something the computers can do better at than humans.

      > Imagine this, I pose the question as a human verification, "What color was George Washington's favorite white horse?"
      But would a computer be able to easily ask questions that itself cannot answer, but a human can? It sounds like
      a set of formulations would have to be hardcoded, such as: "What [trait] was [person]'s favorite [trait value] [object]? -> [color]".
      But these formulations can also be hardcoded in the bot, so this is not really a solution.

    14. Re:This is a very hard problem by mstefanro · · Score: 2

      While this has the sounding of a very wise saying, I really doubt it is anywhere close to being true.

    15. Re:This is a very hard problem by Threni · · Score: 1

      No, that's what lawyers are for.

    16. Re:This is a very hard problem by ZombieBraintrust · · Score: 1

      Simple things like image processing

      Are off limits and would be banned by this campaign. They are looking for test that can be solved by blind people.

      That is a pretty simplified example, but you can find these all over the place and they are fairly easy to create.

      How are these easy to create? To create these questions a program would need to start out with an answer. In this case white. It would then need to randomly generate a unique question that has never been asked before whose answer is white. This question would need to be easy for humans to solve. But it would need to be impossible to solve by the program that just generated the question. Ohh and you need to generate millions of these question answer pairs everyday. It also needs to be done quickly. People don't want to wait longer than a second for the CAPTCHA to load.

    17. Re:This is a very hard problem by OneAhead · · Score: 1

      If every spammer would need a Watson-class supercomputer to stay in business, being a spammer suddenly doesn't seem very lucrative anymore...

    18. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      So that means if you are a monetizing leech, you have to pay extra "price" of having substandard captcha and deal with stupid users on top of that. Well dammit, wouldn't that count as a third problem solved? :)

    19. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      "What color was George Washington's favorite white horse" is easy to break. Just write a bot that randomly takes a word out of the question, and use that as answer. One in X times, you get through.

    20. Re:This is a very hard problem by Zmobie · · Score: 1

      That misses the point. In this very singular instance yes it is easy to solve that one pattern, but you could formulate questions that are ridiculously easy to solve that even if they popped up in search or logic engines the bot would still need to use language processing to get past them.

    21. Re:This is a very hard problem by Zmobie · · Score: 1

      But would a computer be able to easily ask questions that itself cannot answer, but a human can?

      That is very nearly the basis of thought for encryption so I would say it is fairly possible. It is not trivial, but using some language processing techniques you could probably come up with some fairly simple questions and answers on a regular basis. Now, creating them on the fly might be more difficult I admit, but with some effort may be possible.

    22. Re:This is a very hard problem by Zmobie · · Score: 1

      Simple things like image processing

      Are off limits and would be banned by this campaign. They are looking for test that can be solved by blind people.

      This isn't necessarily an end all solution I am suggesting, but definitely an improvement. This is no more excluding than the current system and helps in all cases but the one you suggest. Why would you shoot down an improvement if it gets all but one corner case while the current system barely even works in the general case?

      That is a pretty simplified example, but you can find these all over the place and they are fairly easy to create.

      How are these easy to create? To create these questions a program would need to start out with an answer. In this case white.
      It would then need to randomly generate a unique question that has never been asked before whose answer is white.
      This question would need to be easy for humans to solve. But it would need to be impossible to solve by the program that just generated the question.
      Ohh and you need to generate millions of these question answer pairs everyday. It also needs to be done quickly. People don't want to wait longer than a second for the CAPTCHA to load.

      Well, these are easy for a person to create, and while I admit a dictionary style would be difficult to maintain and be attack-able if the bots could get the dictionary, I would think in theory some of this could be generated with proper algorithms as this is the essence of encryption (albeit encryption is math based witchcraft to your average user). At the very least some measure of formula could be used to create some of this I would think, but I would have to do some significant work to figure that out (work I am not getting payed to do at that, i.e. spare time).

    23. Re:This is a very hard problem by Meneth · · Score: 1

      Sure it is. For example: design a fusion reactor.

    24. Re:This is a very hard problem by Zmobie · · Score: 1

      Not to be offensive or insulting, but that was some pretty weak satire. Especially when 95% of the internet (including slashdot) posts some very piss poor comments and arguments about things and they are totally serious.

    25. Re:This is a very hard problem by Zmobie · · Score: 1

      Pretty much this. I am actually a software engineer and hold a degree in Computer Science, I know a thing or two about the processing power required for this and just because it can be done on the large scale of a supercomputer like Watson, doesn't mean your average spammer can even come close to natural language processing of that level.

    26. Re:This is a very hard problem by mpeskett · · Score: 4, Insightful

      Whatever you use, you need to be able to generate an arbitrary amount of it without significant repetition, without structure that can be automated towards, and with a large "answer space" (number of possible answers) to make the percentage of 'lucky guess' answers extremely low. Oh, and it needs to be easy for humans but difficult for computers.

      Generating distorted text is perfect - random characters, random distortions, nothing about the form of the puzzle that can be used as a shortcut to the answer, guessing strings at random is fruitless, and it hits computers right in the vision, where they (used to) suck and we're really good. Unfortunately that gap is narrowing, and humans on the lower end of visual acuity are getting locked out.

      Generating an endless stream of simple trivia questions is going to require a significant bank of facts, then you're going to hit the problem that if the generation method is known it can be reversed and used against you (e.g. if the answer aways appears as a word in the question, just guess a randomly chosen word from the question and you get a trivially easy 10% or so success rate). Automating the question generation is almost as hard as automating the answers...

    27. Re:This is a very hard problem by YukariHirai · · Score: 2

      Still discriminatory. "The entire human race can go fuck themselves" would be acceptable, though.

    28. Re:This is a very hard problem by tftp · · Score: 2

      Does it have to work?

    29. Re:This is a very hard problem by ZombieBraintrust · · Score: 1

      In order for websites to use your system you would have to share the source code and the dictionary. Even if you closed sourced the project they would have a complete list of questions 24 hours after you went live. These types of things are not easy to do. If they were people would be doing them and we would not have spam.

    30. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      Language and image processing are RIDICULOUSLY difficult to automate efficiently which would defeat the purpose of the bots, while making things a lot easier on the people that do have to deal with this sort of thing.

      Except the moment they're used to verify humans, the field will be advance incredibly overnight.

    31. Re:This is a very hard problem by Somebody+Is+Using+My · · Score: 2

      design a fusion reactor.

      Easy.

      Components required
      3 light years cold, empty space
      2.0 E30 kg molecular hydrogen
      insignificant chunks of other elements
      1 billion years

      Instructions
      disperse hydrogen in center of open space.
      give hydrogen a little whirl to get things going
      add other elements to taste
      wait.

    32. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      Perhaps, but if you're trying to monetize the site you're running you'd be a fool to do something that prevents a good 80-90% of people from accessing it.

      Not everything is about fucking money, you soulless cretin.

    33. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      Think of the retards!

    34. Re:This is a very hard problem by roc97007 · · Score: 1

      My understanding is that to equestrians, there is no such thing as a "white" horse. They're called "grey", no matter how snowy white they might appear.

      So I answer "white" and..... Wrong? Crap. Try again.

      Ok, "who is buried in Grant's tomb?" Easy... Grant.

      Wrong AGAIN? Crap!! (Grant's remains are entombed aboveground, not buried.)

      We could do this all day!

      --
      Oliver's law of assumed responsibility: If you're seen fixing it, you will be blamed for breaking it.
    35. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      What about adding a logical paradox at the bottom right next to the submit button? When the spambot gets to it, its head explodes!

    36. Re:This is a very hard problem by jeff4747 · · Score: 1

      You're assuming warping an image a bit works.

      It's really not that hard to break. It's just most botters get enough posts without bothering.

    37. Re:This is a very hard problem by garvon · · Score: 1

      I think there are no white horses. The are classified as grays.

    38. Re:This is a very hard problem by rtb61 · · Score: 1

      What is needed is an analogue activity that a computer can not replicate but that can still be digitally encapsulated and transmitted and that can be automatically tested by a computer as being valid. This goal with ever increasing computing power looks to be impossible.

      What people really need is a free open source range of douche-bots to scan inputs and reject them. A range of them to cover the various input activities, of course that would mean passing them through a secured support centre that could recognise various bot, hack, spam activities and then reject them. This seems the better solution as the capability of the douche-bot evolves with the computing powers of the douches.

      --
      Chaos - everything, everywhere, everywhen
    39. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      Computers are unable handle the task of living. Ergo, zombies exist.

      Now where did I leave my axe?

    40. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      Language and image processing are RIDICULOUSLY difficult to automate efficiently which would defeat the purpose of the bots

      Language puzzles are also ridiculously difficult to create in an automated fashion, which makes them useless in this context. It's not enough for the puzzle to be difficult to solve: it also needs to be easy to create.

    41. Re:This is a very hard problem by pspahn · · Score: 1

      Exclusivity has its place. If the remaining 10-20% finds that it is worth it to keep those other cretins out, you'd be a fool to do something that allowed these masses of dolts inside the wall.

      --
      Someone flopped a steamer in the gene pool.
    42. Re:This is a very hard problem by TheLink · · Score: 1

      What you could do is have a logic test and somewhat easy to read captcha test then:
      a) if your account passes both tests you end up in Group 1
      b) if your account passes the logic test but fails the captcha test you end up in Group 2
      c) if your account passes fails the logic test but passes the captcha test you end up in Group 3
      d) if your account fails both tests you end up in Group 4.

      What you can see or access then depends on what group you are in and which part of the site. If you are in Group 1, you can access all forums and sections including Group 1 only forums. There should also be shared forums, but you can choose not to see posts by other groups. You could do something similar with Libertarian, Democrat and Republican. That way your site can serve multiple groups and they get to see what they want. ;)

      I've long wondered about setting up something like a review site with a vaguely similar concept - you can choose to see things from any of the various automatically and manually computed Point of Views (most people tend fall into fewer groups for food, movies etc). Sometimes you're not buying stuff for yourself. So if you want to buy a present for your niece/aunt, you might enter her preferences and other details that you know of, then select a possible matching Point of View and go shopping based on that point of view.

      Facebook or Amazon could probably do something like this from their "Likes" data.

      --
    43. Re:This is a very hard problem by mysidia · · Score: 1

      Its going to be far harder to make an AI that can create a decent logic puzzle

      You don't necessarily need a full-blown AI to generate questions; you could use a series of templates with portions selectable from a predefined list. Build a library of questions with some bit of code for each question template. Yes, an adversary could eventually build a bot for one template.

      Given that there are [number from 2 to 8] [painted,in a condition of being] [lit,unlit,orange,green,yellow,red,blue,....] and [number from 2 to 8] [square,round,triangular,....] [lights,blocks,LEDs,displays....] out of a total of [number from 11 to 30]; the [lights,blocks,LEDs,displays....] that are not [painted,in a condition of being] [lit,unlit,orange,green,yellow,red,blue,...] are all [painted,in a condition of being] [lit,unlit,orange,green,yellow,red,blue...], except [number], and all the [lights,blocks,LEDs,...] that are not [square,round,triangular,circular,lit,,....] are [square,round,triangular,circular,lit,,....].
      The [square,round,triangular,circular,lit,,....] [lights,blocks,LEDs,displays....] are also [smooth,rough,sharp,metallic,cold,vibrating,rotating,...]. The blocks that are [painted,in a condition of being] [lit,unlit,orange,green,yellow,red,blue,....]

      The first [number from 1 to N] [lights,blocks,LEDs,...] are [painted,in a condition of being] [lit,unlit,orange,green,yellow,red,blue,....]
      The first [number from 1 to N] [lights,blocks,LEDs,...] are [square,round,triangular,circular,lit,,....]
      The ones in positions [number from a to b] {except [list of numbers]} are [smooth,rough,sharp,metallic,cold,vibrating,rotating,...]
      The ones in positions [number from a to b] {except [list of numbers]}are [smooth,rough,sharp,metallic,cold,vibrating,rotating,...]

      CAPTCHA Question: Please enter the [comma separated list or number] of items that [are,cannot be,might be] { [smooth,rough,sharp,metallic,cold,vibrating,rotating,...] or [painted,in a condition of being] [lit,unlit,orange,green,yellow,red,blue,...] or [square,round,triangular,circular,lit,,....] }

      In addition; if every item that is { [smooth,rough,sharp,metallic,cold,vibrating,rotating,...] or [painted,in a condition of being] [lit,unlit,orange,green,yellow,red,blue,...] or [square,round,triangular,circular,lit,,....] } has a A% chance of being [desired,wanted,hated] and the others have a B% chance [plus number from 0 to 10%] if the item is { [smooth,rough,sharp,metallic,cold,vibrating,rotating,...] or [painted,in a condition of being] [lit,unlit,orange,green,yellow,red,blue,...] or [square,round,triangular,circular,lit,,....] }.

      What are the highest and lowest possible chances for block [number from 1 o 30] to be [not] [desired,wanted,hated] ?

      Please enter three status words to describe item # 5 :

    44. Re:This is a very hard problem by mysidia · · Score: 1

      Not to mention, logic puzzles are unfair to people who have trouble understanding logic; which, in my experience, is damn near the entire human race.

      At least there is some Meritocratic element of being able to solve a simple logic puzzle; versus not having been blessed with good vision.

      If you cannot understand basic logic -- do you really have anything intelligent to say, or is it likely to be flawwed?

      Personally, I believe it's wasted on internet forums though --- a test for understanding of logic should be applied at the voting booth, not in online forums.

    45. Re:This is a very hard problem by mysidia · · Score: 1

      Even if there were, let them take you to court on it, it's not like they're going to be able to make a reasoned complaint, right? ...

      You might have missed the fact, that when it comes to technology: many judges and jurrors fall into the same category as people not capable of fully understanding logic --- or the related category of people who can be persuaded despite logic (sometimes via money, relationships with the attorneys involved, or arguments that are emotional or otherwise sound persuasive even though irrational and bad reasoning).

    46. Re:This is a very hard problem by mysidia · · Score: 1

      Simple things like image processing (someone in the comments below brought the example up of using company logos and you type the name, pizza toppings matched to the correct pizza) ,

      Wait... typing the name of the content you see in an image? That doesn't exactly resolve the objections of blind people. Although poorly sighted people should find it easier to identify toppings on a pizza, than horribly distorted text.

    47. Re:This is a very hard problem by mysidia · · Score: 1

      For every task that a computer is unable to handle, there exists a reasonably well-functioning human who cannot do it either.

      How about this task... hold up a copy of your state ID to the webcam, and let the site use image recognition to check its authenticity. (2) Enter your phone number, and click this button to receive a telephone call; when the phone answers, please dial this 6 digit code, press pound, then say your name.

      Of course what we really need is SSL and a client-side certificate for every unique human :)

    48. Re:This is a very hard problem by mysidia · · Score: 1

      I have an alternative suggestion to logic puzzles: Payment

      To signup, you can choose to complete the Captcha, or you can send me $1 PayPal, or 1 Bitcoin. If you pay me, then you get to register without answering the Captcha.

      Then blind people can still gain access, by exercising the alternative option; there is just a nominal fee -- just like they had to pay a nominal fee for the screen reader and their other assistive devices.

      The forum admin could also provide a street address, for blind people to mail a human-signed form with a self-addressed stamped return envelope to receive a transaction code for 'free' access; that would be a reasonable accomadation.

    49. Re:This is a very hard problem by evilviper · · Score: 1

      hold up a copy of your state ID to the webcam, and let the site use image recognition to check its authenticity. (2) Enter your phone number, and click this button to receive a telephone call; when the phone answers, please dial this 6 digit code, press pound, then say your name.

      Most people don't have webcams connected to their computers... Getting more common thanks to phones and tablets, but it's quite common that there's only one on the front or the back. Besides, when you ask me to install some app that gives you access to my webcam, I'm going to tell you to fuck off...

      State ID's are easily forged with basic image manipulation. The app only gets a photo, it doesn't know you're injecting a still PNG into the video stream, or that you're holding-up a print-out of an ID.

      Voice isn't that hard for machines anymore... TTS and voice recognition are reasonably good. Not to mention people who are either deaf or mute are screwed, so you're cutting off another group instead of the blind.

      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    50. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      Kinda depends on what your monetization plan is. If you are trying to build a good community, then let it bloat, then sell before if dies because of all the idiots you may be right. On the other hand if you want to build a lasting community of.. say.. science and computer nerds and sell their eyeballs you should not let anonymous cowards in by the masses. As I believe we have all seem where that road leads.

    51. Re:This is a very hard problem by AK+Marc · · Score: 1

      http://abcnews.go.com/US/court-oks-barring-high-iqs-cops/story?id=95836

      Well, they can ban you for being too smart, so why not for being too dumb?

    52. Re:This is a very hard problem by mysidia · · Score: 1

      Voice isn't that hard for machines anymore... TTS and voice recognition are reasonably good. Not to mention people who are either deaf or mute are screwed, so you're cutting off another group instead of the blind.

      The image-based Captcha can be offered as an alternative for the deaf or mute.

      If they are blind, deaf AND mute all 3 at the same time, then yeah, there is a problem. Although as mentioned earlier.... I think the Alternative to Captcha should be pay $1 --- $1 from a confirmed Paypal address, and you get signed up -- no questions asked. Only a small number of sites should need to go to extreme lengths -- the financial sites. Everyone else can leech off that identification and proof of humanness by leveraging a token financial transaction or security-token based identity to do so; try as they might, bots can't readily clone such things.

      State ID's are easily forged with basic image manipulation. The app only gets a photo, it doesn't know you're injecting a still PNG into the video stream, or that you're holding-up a print-out of an ID.

      There are commercial services that specialize in that sort of thing, and I am certain they have given some thought to that risk. You don't get to just have a still image of the ID; you have to rotate it on camera.

      If the forums/sites are using the same service; you don't think it will raise alarm bells if the same ID is being used to attempt automated signups to large numbers of forums?

    53. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      A human that knows anything about horses is likely to say grey. True white horses do exist, but they're relatively unusual, and there's no evidence that Washington had one.

    54. Re:This is a very hard problem by jecblackpepper · · Score: 1

      You seem to have ignored the problem of generating the millions of natural language questions that would then require natural language processing to solve. It's easy to come up with one or two as a human, like the George Washington question above, but unless the majority of questions posed as a replacement for CAPTCHA are unique then all that will happen is that the spammers will use a human to solve the relatively few questions and store the result in a lookup table.

      We can see how difficult it is for spam bots to generate to natural language posts so why do you think it would be easy for a computer to generate meaningful natural language questions?

      So to paraphrase you: now every web site would need a Watson-class supercomputer to stay in business, being a site operator suddenly doesn't seem very lucrative anymore...

    55. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      There's a nice suggestion down the thread: generate a bunch of grammatically correct but meaningless sentences, mix in a real one, ask to answer which one.

      Unlike parsing, generating sentences like "Colorless green ideas sleep furiously" is easy even without fixed insert-a-word templates. You can make it as complex as you want, like '(adverb?) (subj) (verb meaning "say", past tense): "(sentence without direct speech)"' where (subj) is "(adj*) (noun)", and so on. With a dozen rules and a dictionary you'll never run out of nonsense to say.

      Getting a huge answer space is easy too, just feed it a Wikipedia dump, for example, and make it three batches of five sentences to get random guess chances under 1%.

      Screenreader-friendly and easy for anyone speaking the language, but parsing it is much harder task, and deciding whether it makes sense is more or less impossible for modern software.

    56. Re:This is a very hard problem by AmiMoJo · · Score: 1

      Even that's discriminatory. Some people can't fuck themselves.

      A strange game. The only winning move is not to play.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    57. Re:This is a very hard problem by tofarr · · Score: 1

      But how many such questions could you create? In your example, it would be trivial to look for strings starting with "What color" and then search for known color strings in the rest of the text - Add that to the rules of your spam bot and hey presto - no such question will stop them anymore.

      So you think up a new question, and the spammers break that just as easily. And a new one with the same result. And so on, and so on.

      The only way this could possibly work is if few enough people are doing it so that the spammers don't expend effort on cracking your system - It is security through obscurity. If you are trying to create a general purpose anti spammer mechanism that can be widely used, then captchas although not perfect are the best current solution to a nasty problem.

    58. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      There are albino horses.

    59. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      The horse was named White, and it was black?

    60. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      Not to mention that it's easier to monetize the middle 80% on that curve. (Top 10% is harder to persuade with faulty logic, bottom 10% is too poor).

    61. Re:This is a very hard problem by CanHasDIY · · Score: 1

      Perhaps, but if you're trying to monetize the site you're running you'd be a fool to do something that prevents a good 80-90% of people from accessing it.

      Not everything is about fucking money, you soulless cretin.

      No, some stuff is about making money, you retarded hippie.

      --
      An enigma, wrapped in a riddle, shrouded in bacon and cheese
    62. Re:This is a very hard problem by CanHasDIY · · Score: 1

      Well, sure, but I never so much as implied that making money from a website via increased accessibility was a universal requirement, so...

      --
      An enigma, wrapped in a riddle, shrouded in bacon and cheese
    63. Re:This is a very hard problem by Yer+Mom · · Score: 1

      If they are blind, deaf AND mute all 3 at the same time, then yeah, there is a problem

      At this point you throw them to a pinball game and check their high score.

      --
      Never mind Spamassassin. When's Spammerassassin coming out?
    64. Re:This is a very hard problem by Zmobie · · Score: 1

      There are actually a couple of other basic language techniques I can think of off the top of my head that could be used against the spammers.

      For starters, you can use a language processing trick that essentially allows humans to gloss over a lot of typos. In general when a person sees a word as long as the word starts and ends with the correct letters and contains the correct ones (in some cases just close to the correct letters), we will process them like they are in order when they are completely out of order without even thinking about it since we process words and not individual letters. This would add some additional complexity to machine processing because now not only does the bot need to tokenize and understand the sentence, but it has to rearrange half the letters in the words to get the correct meaning from the sentence. A human would barely notice and it could be somewhat randomized within the phrase.

      Another thing would be word substitution for slang or synonyms that a machine would then have to reference, but as long as the substitutions are not overly complicated the human user would again have no issues. This could also result in some jargon filled goofy sentences that a person can figure out pretty simply, but a machine would get confused as hell.

      Those are just off the top of my head, with some additional research it could possibly be made more viable. I am not saying this would be easy to implement (or necessarily even feasible, you do raise valid points/concerns), there is a reason we use the current image distortion system, but I think there are some alternatives to what is currently being used.

    65. Re:This is a very hard problem by Zmobie · · Score: 1

      I agree that security through obscurity is not smart practice, but this is only a very basic form of the idea. As I stated, it would require a lot more research into language processing and implementation of a lot of tricks. The two I mentioned in another comment, intentional randomized typos that humans will gloss over and word substitutions for synonyms and slang (possibly even some phrases). Those are only a couple that I can think of right now. I admit, it would require more research and design (that is how the current system came to be as well) and may not even be feasible in the long run, but I am saying there are alternatives to the current system.

    66. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      This would add essentially no complexity - if the order of letters in the word is random, adversary can just _sort_ the letters and store words like that.

      If "essentialy" can be "entissealy" or "eialsennty", you can just store it as "eaeilnssty" and sort the letters in every incoming word to compare them.

      Same with substitutions and synonyms - you can easily normalize the input, replacing any synonyms with first one from the list.

      This is not even really natural language processing, or at most NLP 101.

    67. Re:This is a very hard problem by ZombieBraintrust · · Score: 1

      person sees a word

      How would these work when used by a blind person? They will be using a screen reader. When it hits the typos it is going to either spell things out, autocorrect, or say something odd. If the substitution is easy enough for the screen reader application then it will be easy enough for bots.

    68. Re:This is a very hard problem by TJNoffy · · Score: 1

      "What color was George Washington's favorite white horse?"

      80% of users can't even correctly answer "Who's buried in Grant's tomb."

    69. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      I was thinking the same thing..if they're worried about accessibility, many people have trouble with long division these days...

    70. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      The problem is mono-culture. I rolled my own "captcha" and it is very easy for humans to read. It is a constructed image with a number in it and it is super easy to read. An AI could crack it in seconds, but they don't event recognize it as a Turing test so that don't even try.

      So all a webmaster has to do is have a small series of their own random questions that they add to their form. Eg. 5+2? a,b,c,?, what color is the white house? etc etc.

      Roll your own and win.

    71. Re:This is a very hard problem by kmoser · · Score: 1

      You can look forward to payments from spammers made via stolen credit card numbers.

    72. Re:This is a very hard problem by plover · · Score: 1

      It's quite likely that some forums may prefer only letting in people capable of understanding logic, and there aren't any laws against discriminating against those people.

      Next up: Jim Crow-bot laws. "You must make your content accessible to all people, regardless of IQ."

      --
      John
    73. Re:This is a very hard problem by Svenia · · Score: 1

      I'm really tempted to try something now, because I'm pretty sure if I asked 20 of my old coworkers "What color was George Washington's favorite white horse?" at least half would just give me a blank stare, followed by "Well.... How would I know that?" /sigh

      The good side of that though, is I really don't mind the idea of filtering those types of opinions off the internet.

    74. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      "Any" logic puzzles can be solved by bots

    75. Re:This is a very hard problem by plover · · Score: 1

      How are these easy to create? To create these questions a program would need to start out with an answer. In this case white.
      It would then need to randomly generate a unique question that has never been asked before whose answer is white.
      This question would need to be easy for humans to solve. But it would need to be impossible to solve by the program that just generated the question.
      Ohh and you need to generate millions of these question answer pairs everyday. It also needs to be done quickly. People don't want to wait longer than a second for the CAPTCHA to load.

      You're trying to solve the problem once and forever. That encourages the spammers to solve the generic problem. But spammers are lazy, and they will solve only the problem presented. Instead of creating millions of questions, create only ten or a hundred questions. Deploy that until the spammers adapt their robots. Then replace those with ten new questions with a different set. Change the format slightly with the new questions. Force the spammers to chase you. That increases their costs dramatically, but makes your problem as simple as updating ten trivia questions per day.

      If the spammers switch to Mechanical Turk, you lose no matter what - you can't block humans with spam intent with a human detector.

      That suggests a new approach: instead of a "human detector", we really want a "topic detector." We desire people who are going to post on topic, so make them write an on-topic essay in their sign-up request (or first post from a new account.) Slightly tougher to automate than a CAPTCHA, but it would stop even Mechanical Turks if their goal was volume CAPTCHA busting.

      --
      John
    76. Re:This is a very hard problem by Svenia · · Score: 1

      While I applaud your wit, I guarantee there are more people out there that don't share that quality with you than those that do. So instead of hearing how the blind and elderly can't fill out a captcha, soon the complainers will be the idiots who can't get on the CNN forums. I'm willing to bet the idiots can whine louder, in greater numbers. (Then again if they can't get on the 'internet' to whine, where will they do it?)

    77. Re:This is a very hard problem by Zmobie · · Score: 1

      One word: anagrams. Now that "solution" is broken entirely and the bot now needs to do heuristic natural language processing to figure out which word it is supposed to be, much less what words are possible as it may not be in the bots dictionary which at best can run lookups in O(nlogn) but more likely will run them in at least O(n^2) probably worse. You can also use homonyms to force additional computational efforts on the bots part.

      String processing just to do word matching with known good words is quite complex and often times will run in exponential time. For correct answers you are looking at running in essentially O(n^n) where n = the number of letters, for EVERY SINGLE WORD which is geometric growth in computation time.

      Everyone seems to be missing the point with trying to defeat this argument using processing logic. The CURRENT system is defeated using processing logic and short of using flat out encryption levels ALL systems will eventually be beaten by a bot with unlimited time and processing power. Essentially you have to create something that is difficult for the bot to effectively break and have 100% accuracy. Even the blind squirrel finds a nut so to speak, but natural language processing is not 100% certainty or even close in many cases.

    78. Re:This is a very hard problem by ZombieBraintrust · · Score: 1

      spammers are lazy

      I think this is a bad assumption. People who use bots to scalp tickets have the financial motivation to answer 10 questions everyday. Organized crime that rents out botnets to spammers have the financial motivation to answer 10 to 100 questions everyday. Plus there are plenty of people who do if for the lols and then share it with the spammer community.

    79. Re:This is a very hard problem by Zmobie · · Score: 1

      Valid point, but there are probably ways around that to make it more accessible though damned if I can think of one right now. I really have already expanded a hell of a lot more on this idea than I intended to in this discussion, my point was that it is a possible replacement, not that it definitely would work. It might, it might not, but there are probably alternatives to the current system, people just have to research them and put some work into it.

    80. Re:This is a very hard problem by AK+Marc · · Score: 1

      Amazon Mechanical Turk would fix that. Unless you created an endless chat program that was a Turing test, people would be paid $0.05 per answer, and your limited answers would be discovered and broken.

      Unless you created a separate pool of underpaid workers to give the test, so that the test was inconsistent, never ending, and implanted with piles of errors. Now, what happened if you pointed the Turk at the Turk?

    81. Re:This is a very hard problem by doccus · · Score: 1

      Finally, a website that the DHS and NSA can't crack ;-)

    82. Re:This is a very hard problem by Zmobie · · Score: 1

      Well that is the theory, you use some linguistics tricks in such a way that the bot would need to nearly Turing complete to effectively defeat the system. It is a bit of a challenge though as the system itself would probably become very nearly Turing complete to accomplish this goal, but there are probably some short cuts one could take to help with that challenge. Now it would be quite entertaining to point the Turk at the Turk though if money were not a concern...

    83. Re:This is a very hard problem by uninformedLuddite · · Score: 1

      Now I understand the new /.

      --
      The new right fascists are bilingual. They speak English and Bullshit.
    84. Re:This is a very hard problem by king+neckbeard · · Score: 1

      That depends on what your strategy for monetization is. If it involves targeting highly intelligent people, then you are more or less cutting out noise. It may also boost your traffic within that demographic, given that it would make for a better community. There's also the allure of exclusivity, which itself can be a venue towards greater widespread appeal. That's more or less what facebook did. At first, it was just select colleges, then basically any college, then anyone in a school, then anyone. It was essentially the marketing technique described in Cartmanland.

      However, there's also the possibility that the intention of a site might not be to monetize it, but to create a good environment for discussion.

      --
      This is my signature. There are many like it, but this one is mine.
    85. Re:This is a very hard problem by mysidia · · Score: 1

      You can look forward to payments from spammers made via stolen credit card numbers.

      CVV required for verification. AVS checking mandatory. If the street address they provide doesn't match the card's billing address, then the transaction is rejected.

      To avoid additional e-mail based verification, the transaction must be over Paypal with a verified Paypal user via a confirmed home address.

    86. Re:This is a very hard problem by Cillian · · Score: 1

      If you use something like wikipedia for your legit sentences then cracking it is simple. Google each sentence, the one which turns up exact phrase results is legit.

      --
      -- All your booze are belong to us.
    87. Re:This is a very hard problem by Meski · · Score: 1

      It's quite likely that some forums may prefer only letting in people incapable of understanding logic, and there aren't any laws against discriminating against those people.

      Fixed it for you. I'm thinking of NewsLimited forums.

    88. Re:This is a very hard problem by Meski · · Score: 1

      Damn, I just posted, so can't use a mod point on you.

      Some of the logic puzzles go like - "what colour is snow?" - me answers "yellow" - a good site might recognise human humour here.

    89. Re:This is a very hard problem by Cillian · · Score: 1

      Letter substitution or jumbling would totally muck up a screen reader, though. Humans' very efficient reading only works with visual reading, in which case you're back to square one, a visual captcha.

      --
      -- All your booze are belong to us.
    90. Re:This is a very hard problem by Cillian · · Score: 1

      If your spammers are using Turk or any other form of human labour, all bets are off. I can't think of any reliable way to stop the captcha being captured and played back to another person. A time limit would make it harder, but isn't a problem if you can get your solvers working real-time.

      --
      -- All your booze are belong to us.
    91. Re:This is a very hard problem by Anonymous Coward · · Score: 0

      Nobody's buried in Grant's tomb, it's above ground.

      What do I win?

    92. Re:This is a very hard problem by bill_mcgonigle · · Score: 1

      If it involves targeting highly intelligent people, then you are more or less cutting out noise.

      yeah, I'm on a homebuilding forum and the captchas are things like, "the inner stud framing a window is called a" or "the piece of wood that covers the gap between adjacent doors is a", etc.

      Basically, if you've ever read a carpentry book, you can come in. If you're just looking to complain about the contractor who installed your kitchen counter, you'll probably not be able to post.

      It could still be a "CAPTCHA", though: "Completely Automated Public Turing test to tell Contractors and Homeowners Apart".

      --
      My God, it's Full of Source!
      OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
  6. Re:stupid by rudy_wayne · · Score: 4, Insightful

    Yes it is stupid. I understand that spam is a problem, but if you run a website, it's *YOUR* problem. CAPTCHAs make it *MY* problem and that's just stupid.

  7. sounds like a wetware problem by Gravis+Zero · · Score: 1, Funny

    there isnt a single thing that everyone will like or approve of.

    let's say you change it do you have to answer a simple addition math problem. what you get is someone crying, "i have to answer 5+8?! but i dunno maths you insensitive clod!"

    you know that person really exists.

    --
    Anons need not reply. Questions end with a question mark.
    1. Re:sounds like a wetware problem by Anonymous Coward · · Score: 3, Insightful

      there isnt a single thing that everyone will like or approve of.

      let's say you change it do you have to answer a simple addition math problem. what you get is someone crying, "i have to answer 5+8?! but i dunno maths you insensitive clod!"

      you know that person really exists.

      Yes they do. The solution is that they learn simple math so they're a fully functioning member of society. I suggest an intensive period of schooling - say 11-13 years. Oh wait...

      Who are you going to cater for next? The guy that can't read the damn form. "But I'm illiterate you insensitive clod"? It's not a question of eliminating all objections, just ones that actually stump your audience. Capture is the worst of the worst. You can have a PhD. and get it wrong a substantial portion of the time.

    2. Re:sounds like a wetware problem by war4peace · · Score: 1

      On the other hand, the captchas became ridiculously fuzzy as of late. My vision is 19/20 (rough comparison; doctor said I can be anything BUT an aviator) and I still find myself refreshing several captchas because they don't make sense. Sometimes I eyeball a "word" for 10-15 seconds and then I'm sure i got it right, I type it in and ERROR, wrong captcha.

      If anything, word captchas became impossible to solve for most people and very annoying to perfect vision ones.
      Why can't there be a captcha showing a picture and three buttons with possible answers? Like an image of a baby and three buttons saying MAN, WOMAN, BABY. Or a picture of a running man and buttons saying SLEEP, RUN, CHILD.

      --
      ...gis sdrawkcab (usually not responding to ACs; don't bother posting as AC)
    3. Re:sounds like a wetware problem by Anonymous Coward · · Score: 1

      Lazy people can learn to add. Blind people can't learn to see.

    4. Re:sounds like a wetware problem by amorsen · · Score: 1

      Why can't there be a captcha showing a picture and three buttons with possible answers? Like an image of a baby and three buttons saying MAN, WOMAN, BABY. Or a picture of a running man and buttons saying SLEEP, RUN, CHILD.

      Because you just plug that image into Google 3 times with each key word and pick the answer with the highest score. Or, much easier, you just randomly pick one of the options. One in three is a good hit rate, and even if you block by IP, getting past the system hundreds or thousands of times is trivial.

      --
      Finally! A year of moderation! Ready for 2019?
    5. Re:sounds like a wetware problem by Anonymous Coward · · Score: 0

      no.. this is about blind people complaining that audio captchas are too hard.
      you know why they complain? they haven't had to deal with a bunch of impossible visual captchas.

      slashdot is one of the few sites with reasonable captchas.

    6. Re:sounds like a wetware problem by adolf · · Score: 1

      Like an image of a baby and three buttons saying MAN, WOMAN, BABY. Or a picture of a running man and buttons saying SLEEP, RUN, CHILD.

      They can't be automatically generated, because automatic generation is equally as reliable as automatically solving them.

      So a human would have to design each and every one of them, which is a job that nobody wants to pay somebody to do. There will thus also be a limited sampleset which will easily be learned by a crafty spammer (and like anything else digital, it only takes one person to figure it out).

    7. Re:sounds like a wetware problem by Anonymous Coward · · Score: 0

      Why can't there be a captcha showing a picture and three buttons with possible answers? Like an image of a baby and three buttons saying MAN, WOMAN, BABY. Or a picture of a running man and buttons saying SLEEP, RUN, CHILD.

      Wouldn't that mean the spambot would have a 33% chance of getting it right? Considering a computer can perform several attempts with very little effort, I don't think this would be much of a deterrent.

    8. Re:sounds like a wetware problem by Culture20 · · Score: 1

      Why can't there be a captcha showing a picture and three buttons with possible answers? Like an image of a baby and three buttons saying MAN, WOMAN, BABY. Or a picture of a running man and buttons saying SLEEP, RUN, CHILD.

      Because then on average, 1/3 of all spambots would succeed. You need thousands of possible answers before it becomes usable as a barrier, and you'll need millions of photos (to prevent learning) and someone will have to choose a correct answer per photo, and make sure all other thousands of answers are incorrect.

    9. Re:sounds like a wetware problem by nigelo · · Score: 1

      > Why can't there be a captcha showing a picture and three buttons with possible answers?

      Well, ~33 per cent will be correct due to chance, which isn't a very good success rate considering there may be BILLIONS of bot-members posting spam.

      So, a picture and 10,000 possible answers? Might be considered clumsy.

      --
      *Still* negative function...
    10. Re:sounds like a wetware problem by Anonymous Coward · · Score: 0

      let's say you change it do you have to answer a simple addition math problem.

      In what world is it easier for a human to do a simple addition math problem than an automated spambot?

      That's the intrinsic problem of CAPTCHA-like problems. You need a problem that is mind-numbingly trivial for your average human, but mind-bogglingly complex for computers. Oh, yeah, the problems have to be automatically generated too, so you don't have a small list of problems & answers that can be brute forced.

      CAPTCHAs worked well enough to begin with (besides the intrinsic blind accessibility issues), because commonly available OCR at the time sucked. The letters only needed to be slightly perturbed (or just in a non-standard font) for the OCR to get confused. OCR has gotten much, much better over the years, though, so in order to create a problem that's hard enough for a spambot means you have to distort the characters out of all human recognition.

      The real solution is not to come up with a new human/bot discriminator, but rather to make it less worthwhile to use a bot in the first place. Captchas up the cost in the cost/benefit ratio, but you can just as easily reduce the benefit to achieve the same effect. Things like the nofollow attribute and decent moderation mean that even if someone uses a bot, they don't actually gain much - so why bother? The other is to realize that your blog/website/etc is not all that special, and doesn't need YouTube/Gmail/Wikipedia grade bot protection. I know of several blogs that take care of 99% of their spam problems with simple things like "To create an account, type "green" in the box below." This is completely trivial for a bot to crack, but no one bothers to write a bot to do it, because it's not worth the effort to special-purpose a bot for some rinky-dink blog site. Again, minor benefit means that the cost need not be great.

    11. Re:sounds like a wetware problem by houghi · · Score: 1

      slashdot is one of the few sites with reasonable captchas.

      So how is it that they don't get gazillion spammers posting? Are they on to something?

      --
      Don't fight for your country, if your country does not fight for you.
    12. Re:sounds like a wetware problem by Anonymous Coward · · Score: 0

      If its recaptcha, do note you only have to do one of the words correct, its the one that usually looks reasonable, its a bit wavy usually as well. Its especially easy to recognize if one of them is a bunch of numbers, the word you have to do correct never contains numbers or dashes or whatever else.
      You still have to make it so it looks like you attempted the other word. For example if the captcha is "realword 125354", you have to do at least "realword x" with x being replaceable by pretty much any character.

    13. Re:sounds like a wetware problem by ZombieBraintrust · · Score: 1

      math is a terrible example. a spambot can do addition better than a human can.

    14. Re:sounds like a wetware problem by Your.Master · · Score: 1

      Canada has had exactly that sort of "captcha" for decades without computers, called a "skill testing question". It is a a legal workaround to gambling laws that has been tolerated (and it's typically slightly more complicated than 5+8, but only slightly).

      Really doesn't stop stupid people from using calculators.

    15. Re:sounds like a wetware problem by Krishnoid · · Score: 1

      The solution is that they learn simple math so they're a fully functioning member of society.

      Canadian society, anyway.

    16. Re:sounds like a wetware problem by Anonymous Coward · · Score: 0

      WE have had algorithms to do this pretty well... and only a 1/3 choice would make spambots be reliably able to pass it.

    17. Re:sounds like a wetware problem by Anonymous Coward · · Score: 0

      No problem with that: If you "dunno maths", you have to face the fact, that 1. you might be a brain-dead drone too, and 2. the CAPTCHA did exactly what it was supposed to do: Keep those out that are too dumb to be a human being.

    18. Re:sounds like a wetware problem by EvanED · · Score: 1

      "To create an account, type "green" in the box below."

      Jeff Atwood's codinghorror.com used to have "type orange in the box", but I think he switched to an actual login thing.

      The other is to realize that your blog/website/etc is not all that special, and doesn't need YouTube/Gmail/Wikipedia grade bot protection.

      OK that's fine, but now what should the YouTube/Gmail/Wikipedias do?

      Or take one of the more convincing examples in TFA: ticketmaster. That's a service that can't reduce the benefit, because the whole point of the site is to provide the exact service (selling tickets) that bots want to achieve (buying tickets).

    19. Re:sounds like a wetware problem by mpeskett · · Score: 1

      I've seen greek/cyrillic characters and mathematical notation before. That was fun to try to answer, but was in the "transcribe this book for us" section rather than the "figure out if you're human" section. Wish I'd known about that before receiving the captcha.

    20. Re:sounds like a wetware problem by sjames · · Score: 2

      In fact there are cases of localized brain injuries that make anything dealing with numbers nearly impossible for the person while they are otherwise quite normal.

    21. Re:sounds like a wetware problem by Anonymous Coward · · Score: 0

      there isnt a single thing that everyone will like or approve of.

      Identify this porn star?

    22. Re:sounds like a wetware problem by vux984 · · Score: 1

      OK that's fine, but now what should the YouTube/Gmail/Wikipedias do?

      For better or for worse...gmail seems to be on the verge of requiring you to have a mobile phone. And youtube is pretty much one with gmail so that's 2 out of 3 down.

      Wikipedia can probably do with a reputation system.

    23. Re:sounds like a wetware problem by mysidia · · Score: 1

      let's say you change it do you have to answer a simple addition math problem. what you get is someone crying, "i have to answer 5+8?! but i dunno maths you insensitive clod!"

      I got it... The problem is we're looking for the "one CAPTCHA"; when we should be looking for the right set of CAPTCHAs.... different kinds of questions for different kinds of people.

      There's no reason the site can't let the user choose their CAPTCHA category. It can be Maths, Logic, Geometry, Physics, Biology, or History, Celebrity gossip, Food, Sex, Psychology, Art, Literature, Prose, Christianity, Islam, Buddhism, Shintoism, Architecture ...

      Pick your category, and a question is asked that can be answered by an expert in 10 seconds, but would take a novice or computers perhaps years.

    24. Re:sounds like a wetware problem by mysidia · · Score: 1

      Because you just plug that image into Google 3 times with each key word and pick the answer with the highest score. Or, much easier, you just randomly pick one of the options. One in three is a good hit rate, and even if you block by IP, getting past the system hundreds or thousands of times is trivial.

      So give them 5 options, not 3, and make them answer 3 questions each with 5 options. 1/(5^3) is about a 0.8% chance of getting the set of right answers by chance alone.

      Make sure to provide no hint about correctness or incorrectness until an answer is provided to all 3 questions. You fail the entire sequence of questions, or get them all right as a group.

      If you get all 3 wrong, then you have to wait 15 minutes before trying again.

    25. Re:sounds like a wetware problem by mysidia · · Score: 1

      So a human would have to design each and every one of them, which is a job that nobody wants to pay somebody to do. There will thus also be a limited sampleset which will easily be learned by a crafty spammer (and like anything else digital, it only takes one person to figure it out).

      Not if as part of the Captcha solving, you ask the person to type three words describing each image.

      Supposing you present 3 images... make them pick a word from a 4 or 5 item picklist, and type a few words of their own.

      You will eventually get data about how people describe the image, based on the people who successfully solved the Captcha.

      You can infer that if their solution to the Captcha was correct, and there is a consensus of enough other successful solvers offering a certain keyword, then that keyword has relevance to the image.

      Thus you can discover additional keywords besides the image name automatically. By using the disparity in information available between Your site and some random bot with no dataset.

    26. Re:sounds like a wetware problem by mysidia · · Score: 1

      Because then on average, 1/3 of all spambots would succeed.

      No.. if a bot visits a site with a 33% chance of success; on average, you could expect the bot will succeed. The question of what fraction of spambots will succeed will be the question of how many bots are updated to attempt the unique kind of CAPTCHA.
      If it's a very small site, and just one using this Captcha, then may be 0% of spambots will succeed, because nobody felt it was worth coding up an exploit for a CAPTCHA used by some small site with so little traffic (so little to gain by spamming).

      OTOH... once Spambots are updated to answer the CAPTCHA
      They will try multiple times from different IPs. If the bot makes enough attempts, the law of big numbers says the bot's success rate can be brought within an epsilon of 33%; it would be foolish for the spammer to not have their bot retry a sufficient number of times to guarantee success.

      Thus 80% or more of Spambots that are updated will probably succeed.

    27. Re:sounds like a wetware problem by mysidia · · Score: 1

      So how is it that they don't get gazillion spammers posting? Are they on to something?

      Slashdot is a very large site, so there are likely to be plenty of human spammers. CAPTCHAs don't stop those. I think they might make it less attractive for spammers by marking links in comments Nofollow. If the Spammer doesn't get a search engine boost from the backlink, then what's the point?

      The spammers are around... they are called Anonymous Cowards. Not all of them are bots
      I believe they occassionally ban IP addresses. Slashdot also limits the rate at which anonymous users can post. You can post a comment --- then you can't post anymore for half an hour or so.

    28. Re:sounds like a wetware problem by jecblackpepper · · Score: 1

      You do know that the problem they are trying to solve is accessibility for blind people? Presenting images isn't going to help there.

    29. Re:sounds like a wetware problem by jareth-0205 · · Score: 1

      Yes they do. The solution is that they learn simple math so they're a fully functioning member of society.

      Yeahh..... I don't think trying to beat a computer at maths is the best way to go...

    30. Re:sounds like a wetware problem by LordLimecat · · Score: 1

      Like an image of a baby and three buttons saying MAN, WOMAN, BABY.

      Why wouldnt the hypothetical spambot just guess randomly? 33% success rate makes it useless.

    31. Re:sounds like a wetware problem by Anonymous Coward · · Score: 0

      of course the Man Woman Baby example would hve the same problem as current CAPTCHAS - the picture of the baby would need to be so distorted you couldn't tell what it was.

    32. Re:sounds like a wetware problem by Svenia · · Score: 1

      If someone isn't moderating which "popular choice" words are added in the describe the image, I'm pretty sure we're going to end up with a few common but juvenile and irrelevant choices. I'm sure you can deduce a few of these on your own. Perhaps have these barred from the start?

    33. Re:sounds like a wetware problem by war4peace · · Score: 1

      Put 5 images, 3 answers each, get all right or GTFO.
      Or have image matching, like two columns of 5 images each, click on any image on the left and then its pair on the right (example: a groom on the left and a bride on the right, obviously that's a match; lemon on the left, orange on the right; pen on the left, paper on the right).

      i love it when people get stuck on a fucking EXAMPLE and refuse to think any further with as much as a whiff of extrapolation.

      --
      ...gis sdrawkcab (usually not responding to ACs; don't bother posting as AC)
    34. Re:sounds like a wetware problem by amorsen · · Score: 1

      So give them 5 options, not 3, and make them answer 3 questions each with 5 options. 1/(5^3) is about a 0.8% chance of getting the set of right answers by chance alone.

      So you have slowed my attempts down by a factor 100. A determined attacker can easily make thousands of requests per site from individual IP's. That gets tens of spam posts in per site every 15 minutes. Have fun removing those by hand.

      If you get all 3 wrong, then you have to wait 15 minutes before trying again.

      Good luck implementing that. If you do it per-IP, you will block entire companies or service providers using NAT whenever one user gets the attempt wrong. Also, it will be too much hassle for me to use your site. Anything that is not per-IP is easily defeated by a spammer.

      The spammer does not really care about the 15 minute wait anyway, there are plenty of other sites to attack while waiting for the next 15 minute window to open on your site.

      Your proposals are less effective and less convenient than existing CAPTCHA.

      --
      Finally! A year of moderation! Ready for 2019?
    35. Re:sounds like a wetware problem by markxz · · Score: 1

      One of the advertising CAPTCHA tests had a text box where you had to enter some text to describe a product. On the test selections on the providers website "shit" worked every time.

    36. Re:sounds like a wetware problem by mysidia · · Score: 1

      If someone isn't moderating which "popular choice" words are added in the describe the image

      You mean like the word "prostitute" or "whore" appearing for the Queen of England, or "Dick" appearing as a choice for a picture of fmr. president George Bush?

      I assume there'd need to be a dictionary of known English words, a totally banned words list and a 'suspicious words list'. With words on the suspicious list requiring approval before use with an image.

      Also, any word that a significant portion of the population would fail to select from the pick list more frequently than some threshold would be omitted or deemed 'bad/junk'

  8. Let's stomp out a solution right now! by Anonymous Coward · · Score: 0

    Yeah, yeah, and after they have this and the spambots trivially come back, they'll start bitching that their screen readers can't properly translate "the cheif fuicks le sabretary havemake for the dealintroductionary xxxxanaxxxxxfree". *sigh*

  9. The era of CAPTCHA is over by Anonymous Coward · · Score: 1

    OCR has advanced to the point it is now possible to beat it 99.99% of the time no matter how difficult to decipher -- which has a side effect of making even real humans have trouble reading the CAPTCHA. Not willing to shell out for quality OCR? No problem, Amazon's Mechanical Turk provides you all the tools you need to get people to read the CAPTCHAs for you and the spam goes on. Don't feel like spending any money at all? No big deal, many CAPTCHA services are easily bypassed. (Let's not get into the ethics of certain companies using CAPTCHA solutions for third-party websites as unpaid labor.)

    This was an early-00s temporary solution to a permanent problem better solved via other means.

  10. Pissing and Moaning by CanHasDIY · · Score: 0

    A campaign in Australia has started to rid sites of CAPTCHA to improve accessibility for everyone.

    Sure, but have they come up with or even recommended an alternative? No?

    Well fuck 'em, then - I for one am pretty damn fed up with all these people and organizations who do nothing but bitch about how Item X is 'unfair' to them, AND expect someone else to come up with the solution for them.

    --
    An enigma, wrapped in a riddle, shrouded in bacon and cheese
    1. Re:Pissing and Moaning by stewsters · · Score: 1

      I will create a single sign on service where you pay $1 to sign up. If someone reports you as a spam bot, you will be disabled until you pay me another $1. I will take the money and give a small percentage to some charities (EFF probably) and keep the rest as server and administration costs.

      If people want to spam or create fake accounts, it will cost them a lot more than just having some guy answer 1000 Captchas for a buck. I could track where I get the money from to locate the spammer's accounts.

    2. Re:Pissing and Moaning by Anonymous Coward · · Score: 0

      The CAPTCHA exists because site owners decided the best way to solve their spam problem was to shove the problem onto their users. They did this without thinking through the very real issues with their solution.

      In general, it doesn't take expert knowledge in a field to be able to spot simple problems. For example, I am not a rocket scientist but I can tell you the Challenger disaster was likely not the desired outcome. I am also not a doctor but I can say that a patient dying on the operating table was likely not the desired outcome. I can tell you this despite not knowing how to design a rocket or operate on a person.

      Likewise, I can tell you that CAPTCHA's pissing on blind people was likely not the desired outcome. It is still a problem despite me not knowing a proper fix. You denying this is shortsighted at best.

    3. Re:Pissing and Moaning by Anonymous Coward · · Score: 0

      Nonetheless Captchas are brain-dead even for someone who CAN see or hear the bloody thing. It's beginning to be hard to actually get past them, as a normal human being; and since much of that work by spammers is already off-shored to 3rd world, spammers may actually get them solved faster than real users.

      Actual solutions are sort of obvious -- use contextual information, for example, so user has to know about site and domain it covers -- as well as use of complementary ways to detect and prevent abuse. But those solutions are not one-size-fits-all, and some maintainers still assume that while not perfect, Captcha is "better than nothing". That unfortunately ignores the basic fact that none of these systems is free, when considering all costs, not just money spent on component itself (which may well be free).

    4. Re:Pissing and Moaning by intermodal · · Score: 1

      Why would they want to recommend an alternative? If they're like me, they don't want nor need an alternative. It's the companies using them that want these systems. The users really don't care how much botcrap the server takes in.

      --
      In SOVIET RUSSIA... erm...NSA AMERICA, the Internet logs onto YOU!
    5. Re:Pissing and Moaning by A+non+moose+cow · · Score: 1

      Well they did give an alternative...

      "According to Hollier, a better way for everyone would be the use of emails to activate and verify users, instead of CAPTCHA"

      ...but how do they sign up for that email account?
      Indeed, they seem to be pissing and moaning about inconvenience without really grasping the problem being solved, as evidenced by this gem:

      "With time sensitive things like concerts, this can mean I miss out on the tickets as the transaction times out," Hollier said.

      As opposed to everyone missing out as a bot buys all the tickets.

    6. Re:Pissing and Moaning by Anonymous Coward · · Score: 0

      this is brilliant - go to patent office and start earning money without work load already!

    7. Re:Pissing and Moaning by CanHasDIY · · Score: 2

      Well they did give an alternative...

      "According to Hollier, a better way for everyone would be the use of emails to activate and verify users, instead of CAPTCHA"

       

      Yea, suppose I could have clarified by adding "alternatives that aren't worse than what they're replacing," but I figured that was a given.

      --
      An enigma, wrapped in a riddle, shrouded in bacon and cheese
    8. Re:Pissing and Moaning by CanHasDIY · · Score: 1

      Why would they want to recommend an alternative?

      Because otherwise they come off as a bunch of whiny narcissists who should be summarily ignored? That's my take, anyway.

      The users really don't care how much botcrap the server takes in.

      On the one hand, lol and touche.

      On the other, they'll start to care when the botcrap makes the server unreachable to them; at which point they'll just start pissing and moaning again, and the cycle begins anew.

      --
      An enigma, wrapped in a riddle, shrouded in bacon and cheese
    9. Re:Pissing and Moaning by Anonymous Coward · · Score: 0

      Have you ever been to 4chan before they had captcha? I mean, sure, its not a great place to go to anyway, but in the days before they added captcha, only about 1 thread in 10 was not spam. With the average forum/imageboard/whatever having about 10-20 threads per page, this means that on the first page, you will find only 2 items that are real, at max. Probably less because 4chan goes fast. A forum that only has a reply once an hour instead of 10 times per second would simply no longer be useable.

      Back in the days we had a small forum set up for our class on some free hosting site. We made a part with all the users from our class and then the rest was free for all spambots to go. Basically the whole free part was flooded in days. The forum did require mail activation. And we were far from anything that is semi popular.

    10. Re:Pissing and Moaning by mlts · · Score: 1

      What might work would be a pseudo-anonymous service:

      Company "A" demands some personal info, validates it, chucks it, and makes a master certificate on your private key. You can then have other private keys (as many as you want) certified, each completely separate from the others, and the only connection is company A's certificate. Company "A" can even charge a small fee, say 25 cents for each key certified, and an initial fee of $1.

      Then, the website could ask for you to just copy, sign, and paste some random text with your key. Then, the website checks if your key is validated with company "A", and grants/denies access.

      If the website noticed that they are getting spam from someone with the key, they notify company "A" about it, and they revoke all keys owned by that user. This prevents any new accounts from being made, although current ones are left intact.

      Of course, there would have to be degrees of separation, so that the user info that is validated never leaks to the throwaway keys used for each site, and there are some tuning items such as what constitutes validated, and what to charge. It isn't 100%, but it can be used.

      Of course, another solution is requiring clients to have a client cert from a known good CA (and making sure the cert is a paid one, not a temporary, 30 day.)

    11. Re:Pissing and Moaning by Anonymous Coward · · Score: 0

      Likewise, I can tell you that CAPTCHA's pissing on blind people was likely not the desired outcome. It is still a problem despite me not knowing a proper fix. You denying this is shortsighted at best.

      Really? You went there? Why not have the balls to go all the way? "If you deny this you're just being willfully blind to the situation"

    12. Re:Pissing and Moaning by intermodal · · Score: 1

      Hey, don't get me wrong, I generally agree with you on this. Unlike Anon, you properly read the tone of my previous post as indicated by your reaction.

      This group is, in fact, a bunch of whiny narcissists who will be ignored. And I'm fine with them being such.

      As far as the when they'll start to care bit, you're right about that too. But we are, of course, dealing with narcissists. I can't come up with any good reason to really care if they're happy or not. These are the people who will demand to know why they can't embed media files on a forum that disallows it, and then whine and try to take their ball and go home when they don't get special permissions to do so. And then be back a month later, still pissed off and wondering why nobody wants to be their friend anymore.

      --
      In SOVIET RUSSIA... erm...NSA AMERICA, the Internet logs onto YOU!
    13. Re:Pissing and Moaning by EvanED · · Score: 1

      How do you propose working around the following problem:

      Someone named "stewsters" is spamming me. Please disable his account.

    14. Re:Pissing and Moaning by timmyf2371 · · Score: 1

      To an extent, you're right in that it's the website operators who want to use systems like the CAPTCHA. But the primary reason for using such a system is so that users can access the website quickly, and without wading through a tranche of spam to get to what they want to read.

      The companies and website operators who use technologies like CAPTCHA didn't suddenly decide they would implement them, just to annoy their users. They are there for a reason and if we as users want rid of them, then we should absolutely be in favour of better alternatives.

      --

      Backup not found: (A)bort (R)etry (P)anic
    15. Re:Pissing and Moaning by EvanED · · Score: 1

      am also not a doctor but I can say that a patient dying on the operating table was likely not the desired outcome. I can tell you this despite not knowing how to design a rocket or operate on a person.

      Yep. But at least for a while, people dying on the operating table will happen, because even if people were perfect and never made any mistakes, we simply don't know how to prevent such occurrences completely.

      I don't think you'll find people claiming that CAPTCHAs are a good solution to the problem, but without stating a position on the matter (I'd have to see some hard evidence) it seems to be not completely unreasonable to say that that they're better than the alternatives.

      Let's go back to the OR table. Suppose that you have a condition that has a 90% chance of being fatal sometime in the next year. We can operate, but the operation has a 10% of fatal complications. Should you say "Operating has a 10% chance of a negative outcome. I'm not gonna do it. Figure out something better?" and wait around until we do?

    16. Re:Pissing and Moaning by intermodal · · Score: 1

      This is not a negotiation. Nor would I want it to be. I'm fine with a better alternative being presented, but these users are the last ones I want to see present it.

      You seem to assume I'm siding with the group. I'm not, really. I'm just saying that they want to be rid of captcha, and that's fine. When it becomes not fine is when the companies fail to respond to user issues with the current system.

      Seriously, we can do better than Capcha, and I bet the guy who comes up with that idea is going to rake in a lot of cash, not tack it for free to a petition.

      --
      In SOVIET RUSSIA... erm...NSA AMERICA, the Internet logs onto YOU!
    17. Re:Pissing and Moaning by Richy_T · · Score: 1

      Also, because emails are completely impossible to process automatically and not as trivial as adding "*:|spambot.pl" to the aliases file.

    18. Re:Pissing and Moaning by Anonymous Coward · · Score: 0

      I will create a single sign on service where you pay $1 to sign up. If someone reports you as a spam bot, you will be disabled until you pay me another $1.

      As long as the payment is higher than the cost of dealing with the spammer (deleting their mess), it shifts spammers into a good thing (lots of money) instead if a problem (lots of work/mess). Problem Solved!

      Do that, and support bitcoin (its way easier to support than most currencies). You could also support other currencies, and maybe run a Chaum Bank to convert currency into anonymized tokens to help avoid making the actual sites involved deal with actual currencies and payment processors and personally identifying information.

      You could even implement bonded system, where you get your money back if you contribute in a friendly/useful manner, and maybe a tip (from the spammer's bond) for reporting spam.

      Add cross site accounts (OpenID?) and some third party (possible separate) service that does reputation scoring (have you paid your fee? Do other trusted members claim you suck?) and you may be able to avoid paying for each site. That could be kinda messy though. If one payment lets you spam hundreds of sites (or more), it starts to get to be an issue again.

    19. Re:Pissing and Moaning by Anonymous Coward · · Score: 0

      If you frequently look at comments on e.g. youtube videos, you will see that many people "mark as spam" any comment they disagree with or dislike. I'm talking about things that are on topic and obviously written by a real person. There is usually a downvote button next to the spam button, so it's not like they have no way of giving the correct feedback either.

    20. Re:Pissing and Moaning by grumbel · · Score: 1

      ...but how do they sign up for that email account?

      Via your mobile phone number, Gmail has been doing that for a while for new accounts.

    21. Re:Pissing and Moaning by Anonymous Coward · · Score: 0

      ...but how do they sign up for that email account?

      Via your mobile phone number, Gmail has been doing that for a while for new accounts.

      The point to my remark was that CAPTCHA doesn't require the end user to have some other service first.

    22. Re:Pissing and Moaning by Anonymous Coward · · Score: 0

      I came up with a similar system to get rid of email spam. Email certification. If you want to send certified mail (and you can send all the un-certified mail you want, just be aware most people will trash it), you go to your ISP (or other such company as might offer the service). You pay a nominal fee, and they 'certify' you. You generate a public/private key pair, they keep the public one. The private one goes in your server, and is used to encrypt a header line in outgoing emails. The email software of anyone receiving your emails gets your public key from the certifier, (caches it for later) and decrypts the header. If you start sending spam, then the recipients click a 'report spam' button, that auto-emails your certifier, who then drops your certification (after some investigation). And all your spam is then classified as 'un-certified', and (most likely) trashed by everyone's email client.

        White lists can allow anyone to receive your email, certified or not (so smaller organizations that can't afford the two bucks to get certified can still send out emails.) Black lists can still be used to junk any mail (certified or not) from certain addresses or countries or IPs or containing the word 'Viagra' or whatever. And of course, if a spammer gets a certifier to play along with them, the recipients can blacklist ALL email certified by that certifier as well. And the certifier loses all their legit business.

      There's more to it, and I skipped some details. But it would reduce spam to only one or two instances before someone clicks the 'report spam' button, and the sender gets de-certified. And everyone else who would have gotten that spam... doesn't get it. (Well, it gets put in the 'spam folder', technically.) Send out a million emails, and only 2 or 3 people see it. Not cost effective.

    23. Re:Pissing and Moaning by Anonymous Coward · · Score: 0

      ...but how do they sign up for that email account?

      Um... you get one with your ISP. At least, I do.

    24. Re:Pissing and Moaning by Ash-Fox · · Score: 1

      Do that, and support bitcoin (its way easier to support than most currencies).

      Two problems:

      1) People are lazy and don't want to know.
      2) People can't figure out how to get Bitcoins - See 1.

      --
      Change is certain; progress is not obligatory.
    25. Re:Pissing and Moaning by stewsters · · Score: 1

      Perhaps you would need to have a certified account to report people. When you get decertified it will tell you what account banned you.

      I would just make that stewsters guy (who obviously is a spammer) pay again to re-enable his account and take even more money. He would then report whoever reported him, producing a chain of cash that will only be broken when the spammer or the reporters are out of money. I would hope there are more people interested in removing spammers than there are spammers willing to pay money. Eventually, the spammers will realize that they have wasted to much cash and that the system is too costly to spam. Then I take that money, give a significant portion of it to charity, and use the rest to buy a sweet Maserati.

      Its no more of a scam than ssl certificate authorities. Well, maybe a bit, but not much more of a scam.

  11. Fun Fact by HairyNevus · · Score: 1

    Not sure is this is already super well known, but only 1 word is actually used for verification. In this example you could type "thrand " and pass it. The verification word always looks similar in font/size to 'thrand'. Oh, and the other word I believe is a scan from a book and if you *do* type it in, it will help the digital scan of the book actually pin point what word it is.

    --
    You were critically hit for no damage. The bruise will look nice, and maybe the scars will make good party talk.
    1. Re:Fun Fact by mrjb · · Score: 1

      Fun fact 2: To ensure the "scanned" word is read correctly, multiple identical matches need to be given by multiple users. In the example, the correct "scanned" word is likely to end up being "wtf?"

      --
      Visit http://ringbreak.dnd.utwente.nl/~mrjb/growingbettersoftware to download your free copy of the book
    2. Re:Fun Fact by Anonymous Coward · · Score: 0

      I seem to recall a campaign on /b/ about 2 years ago to fill the scanned word with 'niggers'. Given how many captcha-solvers there are on /b/, I wouldn't be surprised if a few got through the system...

    3. Re:Fun Fact by amorsen · · Score: 1

      I am fairly sure that your information is out of date. Not 100% sure admittedly. I have tried the trick of trying to guess which word is the important one before and failed miserably. Try it for yourself, maybe you can do better than I did.

      --
      Finally! A year of moderation! Ready for 2019?
    4. Re:Fun Fact by timmyf2371 · · Score: 1

      With the example you gave, I'd be surprised if they got enough matches to identify the second word. I know I'd have taken one look at it and hit the refresh button to get two words I can actually decipher.

      --

      Backup not found: (A)bort (R)etry (P)anic
    5. Re:Fun Fact by darkfeline · · Score: 1

      That's only for reCaptcha, you dolt. reCaptcha is charity-ware, and each captcha goes toward scanlating texts. That's why one of each pair looks much neater (and more comprehensible) than the other. The idea is that you solve a captcha and digitize some text for goodwill. Of course, this is open to abuse, which emerged most clearly during 4chan hijack of that one Time Person of the Year poll a while back. But reCaptcha does have mechanisms in place to prevent you from bullshitting the real text word (so as not to have /b/tards placing the word "penis" in every digitized text in the future), to some extent, but that is not infallible to the best of my knowledge.

    6. Re:Fun Fact by HairyNevus · · Score: 1

      I thought the links I provided made it fairly implicit I was referring to reCAPTCHA. I mean one is a picture of a reCAPTCHA, and the other is a link to a page explaining the reCAPTCHA digitization process. But, in case anyone else missed it, I'll spell out reCAPTCHA one more time.

      --
      You were critically hit for no damage. The bruise will look nice, and maybe the scars will make good party talk.
    7. Re:Fun Fact by YukariHirai · · Score: 1

      Whereas I expect that the people behind recaptcha have thought about some of the possible abuses and have some kind of checking applied to prevent that from happening.

    8. Re:Fun Fact by NJRoadfan · · Score: 1

      Google also uses images of house addresses captured on Streetview.

    9. Re:Fun Fact by poizan42 · · Score: 1

      What's the problem in just typing "A"? Almost all of the characters are right in front of you on your keyboard!

    10. Re:Fun Fact by darkfeline · · Score: 1

      Sorry, I jumped the gun there a little. You posted on a news item about captchas in general without mentioning a thing about reCaptcha, so I assumed you meant all captchas only use one word for verification, which is completely false.

  12. much better out there by Xicor · · Score: 1

    there are already several types of captcha nowadays that are newer and much easier to use. one of the ones ive seen is one with a company logo and you have to type out the company name. another is one where you have to makea pizza with specific toppings. another one is where you have to draw an image. captchas are necessary... the problem is that they have become too ridiculously difficult instead of making it easy to use for normal ppl.

    1. Re:much better out there by ZombieBraintrust · · Score: 1

      A blind person can not solve any of those captchas. This campaign would ban those captchas as well.

    2. Re:much better out there by umghhh · · Score: 1

      what you mean is that the bloody bots are already better than average human at reading?

    3. Re:much better out there by Xicor · · Score: 0

      i just want to point out here that a blind person couldnt navigate a website to get to a captcha in the first place. the article was talking about visually impaired ppl... who would have a much easier time with the newer forms of captcha than the ridiculous ones that the majority of sites use

    4. Re:much better out there by ZombieBraintrust · · Score: 1

      Blind people can navigate the web if the website is built correctly. The blind use screen reading applications. They read the text portion of a site out load. They then use keyboard commands to select links. Images are described using their alt text.

    5. Re:much better out there by Xicor · · Score: 1

      so what you are saying is that maybe .5% of websites can be navigated by blind ppl?

  13. Of Course It's Annoying by Anonymous Coward · · Score: 0

    But, having the forum overrun with spam and Frosty Piss is far more annoying!

  14. Somewhere on the intarwebs... by Sponge+Bath · · Score: 1

    A stoned person types his password into a CAPTCHA field.

    "Wrong? Ah man, I know that's my password."

  15. CAPTCHA not going anywhere by Dynedain · · Score: 1

    CAPTCHA will be around as long as it is the best way to stop programatic submissions.

    CAPTCH sucks for sighted people as well, not just the visually impaired.

    As long as we have need for tools to discern software from people, something like CAPTCHA will exist. And so far we haven't developed anything that only humans can do, but computers can't.

    --
    I'm out of my mind right now, but feel free to leave a message.....
    1. Re:CAPTCHA not going anywhere by Anonymous Coward · · Score: 0

      One Voight-Kampff test, coming right up.

      When you saw the CAPTCHA were you:
      A) Enraged
      B) Disgusted
      C) Intrigued
      D) Resigned

    2. Re:CAPTCHA not going anywhere by tlambert · · Score: 2

      CAPTCHA will be around as long as it is the best way to stop programatic submissions.

      It's well documented that there are several groups who have put put porn sites using collections of images from around the net; then they attack sites that require answering CAPTCHA. When challenged by the CAPTCHA, the forward it on to someone seeking the "free porn", and then forward that persons answer back to the site they are attacking.

      So the CAPTCHA-using site wants a human to solve the CAPTCHA, a human solves the CAPTCHA, gets their porn, while the attacker gets into the "protected" web site that they actually wanted to attack.

      In the limit, they don't work; in practice, there's an amount of effort barrier that makes your site "sorta safe" from bots, if it's small enough that it's not going to be useful to an attacker as a link farm anyway, since it doesn't have enough page-rank credibility of its own that it's worth subverting.

    3. Re:CAPTCHA not going anywhere by Anonymous Coward · · Score: 0

      It doesn't stop programatic submissions it only slows them down. I have achieved a 23.6% success rate with automated methods are analyzing captchas.

      The best way has been to require people to pay to post.

    4. Re:CAPTCHA not going anywhere by rasmusbr · · Score: 1

      Actual solution:

      1. Sign up for an account with a major social provider (Facebook, etc)
      2. Tie your social account to your cellphone number/SIM
      3. Verify that you own the SIM and that the same number has not been used to register other accounts on the same social network. )Possibly verify that the SIM is registered with the government on the same name used to sign up.)
      4. Done. From now on you do one-click signup with other services.

      By the way it's only a matter of time before governments begin to dictate (at least de facto) that you must be on at least one of the major social networks, so saying that you don't want to is not going to be an issue. I'm sure there will be "anonymous" signup for porn sites too, with some identifier that the government can use to link your anonymous account to you...

    5. Re:CAPTCHA not going anywhere by Dynedain · · Score: 1

      I know there's plenty of ways to break the intent of CAPTCHA. But at the moment it's still the easiest to implement and most difficult to break solution we have.

      Until a better solution is developed, or CAPTCHA is completely broken, it's not going anywhere. It sucks, but for the most part it does work.

      --
      I'm out of my mind right now, but feel free to leave a message.....
    6. Re:CAPTCHA not going anywhere by Dynedain · · Score: 1

      You're just pushing the problem to the social media providers then. And they do captchas as well. There's plenty of fake social media profiles out there and if you use social media logins, be prepared for bots using fake or hijacked social profiles.

      --
      I'm out of my mind right now, but feel free to leave a message.....
    7. Re:CAPTCHA not going anywhere by Anonymous Coward · · Score: 0

      By the way it's only a matter of time before governments begin to dictate (at least de facto) that you must be on at least one of the major social networks, so saying that you don't want to is not going to be an issue.

      Cite please.

    8. Re:CAPTCHA not going anywhere by aNonnyMouseCowered · · Score: 1

      "By the way it's only a matter of time before governments begin to dictate (at least de facto) that you must be on at least one of the major social networks, so saying that you don't want to is not going to be an issue."

      What you're suggesting will only make the work of the spy agencies of the world all the much easier. When FB accounts become legally binding, then, guess what, you can get arrested, and not just suspended, for registering as Albert Einstein Tarkovksy. I can tolerate FB so long as there's no obvious legal consequences for being an online schizophrenic.

    9. Re:CAPTCHA not going anywhere by jeff4747 · · Score: 1

      You're assuming CAPTCHA works.

      It doesn't. OCR can handle virtually all of them. Even if you invent a CAPTCHA OCR can currently break, cheap Chinese labor (or "Free porn if you solve CAPTCHAs") is extremely effective.

    10. Re:CAPTCHA not going anywhere by Dynedain · · Score: 1

      Agreed that CAPTCHA is not a be-all-end-all tool. However, it is the most effective and easiest to implement solution for the particular problems it solves.

      Until there is something more effective than CAPTCHA, and at least as easy to implement, we'll be stuck with it.

      --
      I'm out of my mind right now, but feel free to leave a message.....
    11. Re:CAPTCHA not going anywhere by serviscope_minor · · Score: 1

      It's well documented that there are several groups who have put put porn sites using collections of images from around the net; then they attack sites that require answering CAPTCHA. When challenged by the CAPTCHA, the forward it on to someone seeking the "free porn", and then forward that persons answer back to the site they are attacking.

      True, but that still does not make them not worthwhile. The thing is that spammers are doing this for money, not for grins, so as long as you make it sufficiently difficult and expensive, the incentive goes away.

      I run a small, special interest technical forum using PHPbb. Cheap and cheerful software but works well enough except that it was overrun with hundreds of thousands of pharma spam messages very quickly.

      Adding recaptcha slashed the amount of spam dramatically. Then adding some trivial questions to be filled in cut it down to so far one spam message ever.

      The trivial questions don't change they're really easy. A spammer could take the time to check the site and then write some special code to fill in the right questions in that form.

      The thing is though that recaptcha cuts down the volume they can churn through and requiring the spammer to go to the extra effort makes it even less worthwhile. Given the size of the forum I have almost certainly raised the cost of spamming it above the amount of money that would ever be recouped.

      Spam is a high volume, tiny margin game. If you can take even a little ding out of the volume and add a little bit to the cost then the finances simply do not work out for the spammer.

      Could a targeted attack wreck my forum? Yes of course. But the problem I was actually suffering was indiscriminate pharma spammers.

      --
      SJW n. One who posts facts.
    12. Re:CAPTCHA not going anywhere by jeff4747 · · Score: 1

      The entire point is CAPTCHA does not solve a problem.

  16. Thanks for sharing by foma84 · · Score: 1

    Another "service" Goggle capitalizes on, for free.
    It makes me want to cry when I think of how many catchas I've typed...

    1. Re:Thanks for sharing by Richy_T · · Score: 1

      It makes me cry how many accounts I've had to register, confirm and forget just to add a comment to a forum I'll never read again (typically when I've been searching for the answer to a problem, found the answer elsewhere and want to share that answer with others who have not yet solved the problem).

  17. Re:stupid by pseudofrog · · Score: 4, Insightful

    If taking a couple seconds to answer a CAPTCHA is too much effort, I probably don't really care what you have to say in the comment section.

  18. Re:stupid by aardvarkjoe · · Score: 4, Insightful

    I understand that spam is a problem, but if you run a website, it's *YOUR* problem. CAPTCHAs make it *MY* problem and that's just stupid.

    If the website you use is overrun by spam to the point of being unusable, then it's your problem as well.

    --

    How can we continue to believe in a just universe and freedom to eat crackers if we have no ale?
  19. Re:stupid by Idimmu+Xul · · Score: 4, Insightful

    As someone that runs a website, without CAPTCHAs I'd be fucked.

    There are bots that can automatically register on a site, then check the email account for the activation link, in order to start spamming, so that's not a solution.

    The newer 'flash games' e.g. 'out of 5 objects, put the drinks in the cooler' are an interesting solution, but that probably still won't work for people with accessibility issues.

    Moderation can work on sites like slashdot, but on lower traffic sites not so much, and the signal to noise ratio will be awful.

    If Australia pass this and actually clamp down on 'offenders' it will do more harm than good as the only recourse webmasters will have is to not allow people to register/interact with the site as the cost of cleaning up spam will be too high.

    --
    The problem with slashdot is that most of its users were bullied and stuffed into lockers as kids!
  20. Re:stupid by Baby+Duck · · Score: 2

    Offloading some of the responsibility to you as a human co-processor is an effective tactic called Share The Pain. It's not stupid, it's genius. You just don't favor the end result. You can always vote with your mouse and go to another website.

    --

    "Love heals scars love left." -- Henry Rollins

  21. Re:stupid by Anonymous Coward · · Score: 0

    I don't care about you or your problem.

    And most site owners don't either.

  22. Let's Have a 2015 Solution! by rueger · · Score: 1

    Passwords, with no two sites accepting the same format. CAPTCHAs, which often as not even normally sighted people can't read without difficulty. Security questions which are either inane or represent their own special security risk.

    God almighty, can't we come up with something to replace all of these?

    1. Re:Let's Have a 2015 Solution! by icknay · · Score: 1

      Ok repeating myself, but the open, standard, non-one-corp-controlling-it-all solution is Mozilla Persona http://www.persona.org/ -- it's in like alpha state now, should ship for real this year. You heard it here first!

    2. Re:Let's Have a 2015 Solution! by You're+All+Wrong · · Score: 1

      """
      Adding the Persona login system to your site takes just five steps:

      1) Include the Persona JavaScript library on your pages.
      """

      Unacceptable.

      --
      Your head of state is a corrupt weasel, I hope you're happy.
  23. Oblig. XKCD by djlemma · · Score: 3, Insightful
  24. Annoyance to older people by Culture20 · · Score: 1

    Annoyance to older people who were used to buying their overseas Viagra from forum spambots.

  25. Captcha is necessary. by mrjb · · Score: 1, Interesting

    Captcha fulfills a need - it is, as the name implies, a test to completely automatically tell computers and humans apart. It's necessary to keep spambots from registering accounts and spamming the hell out of us. Granted, the "type this wobbly word" may not be the most practical (nor safe) solution. It's easy enough to come up with alternatives- Perhaps show four photographs and ask the user to click on the one that doesn't belong (maybe the kitten out of a picture of 4 cats). Coming up with good ideas? Much harder. Complain about it all you like. Come back if you have a better alternative.

    --
    Visit http://ringbreak.dnd.utwente.nl/~mrjb/growingbettersoftware to download your free copy of the book
    1. Re:Captcha is necessary. by Anonymous Coward · · Score: 0

      Part of the problem is that having options automatically guarantees a success rate. Only 3 choices? A random guess would net you a 33% success rate. 4 changes would net you a 25% chance rate.

    2. Re:Captcha is necessary. by amicusNYCL · · Score: 1

      Perhaps show four photographs and ask the user to click on the one that doesn't belong (maybe the kitten out of a picture of 4 cats).

      Yeah, that will totally solve the problem for blind people.

      Hidden fields, people, the answer is hidden fields. Hide fields from people using Javascript, bots still find them, if they're filled out reject the form.

      --
      "Our two-party system is like a bowl of shit looking at itself in a mirror." - Lewis Black
    3. Re:Captcha is necessary. by Anonymous Coward · · Score: 0

      Wouldn't that also be trivial to fix? Just need to tell it to exclude hidden fields.

    4. Re:Captcha is necessary. by Anonymous Coward · · Score: 0

      From wikipedia:

      It may be possible to subvert CAPTCHAs by relaying them to a sweatshop of human operators who are employed to decode CAPTCHAs. The W3C paper linked below states that such an operator "could easily verify hundreds of them each hour". Nonetheless, some have suggested that this would still not be economically viable.[9] Another technique used consists of using a script to re-post the target site's CAPTCHA as a CAPTCHA to a site owned by the attacker, which unsuspecting humans visit and correctly solve within a short while for the script to use.[10]

    5. Re:Captcha is necessary. by Anonymous Coward · · Score: 0

      Hidden fields, people, the answer is hidden fields. Hide fields from people using Javascript, bots still find them, if they're filled out reject the form.

      That only works if your site isn't specifically targeted.

    6. Re:Captcha is necessary. by Anonymous Coward · · Score: 0

      yea but then people using javascript will be tricked.
      And then per website spambots will appear.

    7. Re:Captcha is necessary. by Anonymous Coward · · Score: 0

      " It's easy enough to come up with alternatives- Perhaps show four photographs and ask the user to click on the one that doesn't belong (maybe the kitten out of a picture of 4 cats)."
      That would make it much easier for the blind people to use the site, you know the topic of the article

    8. Re:Captcha is necessary. by Ichijo · · Score: 1

      Captcha fulfills a need - it is, as the name implies, a test to completely automatically tell computers and humans apart. It's necessary to keep spambots from registering accounts and spamming the hell out of us.

      I hardly ever see spam. My mail provider decided that the content of e-mail is its own Turing test. So why do we need Captcha anymore?

      --
      Any sufficiently unpopular but cohesive argument is indistinguishable from trolling.
    9. Re:Captcha is necessary. by jeff4747 · · Score: 1

      That's not the need it fills. The need it fills is making administrators believe they are doing something to stop bots.

      CAPTCHAs don't work. They stop the least sophisticated bots which are only used for "bulk". It's the bot equivalent of the meth-addict breaking into houses - they're only looking for enough money for their next fix. The fact that you have pointy bushes outside your house doesn't make it secure. It just makes it less appealing to that meth addict.

      Same with CAPTCHAs. It only thwarts the bots that are selling "We make X posts to advertise your product". They don't give a damn where those posts are made, just that they hit the quota and they can get enough without breaking CAPTCHAs.

      If your site is actually worth targeting, CAPTCHAs will fail miserably. OCR can handle the vast majority, and cheap Chinese labor or "free porn if you solve CAPTCHAs" will handle the rest.

    10. Re:Captcha is necessary. by Anonymous Coward · · Score: 0

      Then people using noscript can end up getting caught off-guard...

    11. Re:Captcha is necessary. by Anonymous Coward · · Score: 0

      Yeah, that will totally solve the problem for blind people.

      Um, how many blind people ARE there? More to the point- how many are using the WEB?

      I'm sorry, but if you CAN'T SEE, you simply can't use a visual medium. Sorry and all, but Get over it.

      What's next, paraplegics wanting to join the Olympics??

    12. Re:Captcha is necessary. by ratbag · · Score: 1

      ... bot checks for fields hidden by javascript, doesn't fill them in, you accept the form. The arms race continues.

    13. Re:Captcha is necessary. by serviscope_minor · · Score: 1

      If your site is actually worth targeting, CAPTCHAs will fail miserably. OCR can handle the vast majority, and cheap Chinese labor or "free porn if you solve CAPTCHAs" will handle the rest.

      But that's the thing really. Spam, even targeted spam is a high volume, tiny margin game. You only have to alter the balance slightly for it to become financially unviable.

      For the forum I run, I am fully aware that it could be spammed quite easily. But no one does because the cost of doing so ins't worth it.

      --
      SJW n. One who posts facts.
    14. Re:Captcha is necessary. by amicusNYCL · · Score: 1

      Um, how many blind people ARE there?

      According to WHO, there are 285 million visually impaired people, so about 90% of the population of the US. 39 million of those are completely blind, which equates to a country the size of Poland or Argentina.

      --
      "Our two-party system is like a bowl of shit looking at itself in a mirror." - Lewis Black
  26. Apparently blind people are unaware of all the spam postings clogging porno web sites without it.

    --
    (-1: Post disagrees with my already-settled worldview) is not a valid mod option.
  27. Re:stupid by nitehawk214 · · Score: 5, Insightful

    If taking a couple seconds to answer a CAPTCHA is too much effort, I probably don't really care what you have to say in the comment section.

    Or a couple of minutes considering most capchas are illegible.

    --
    I'm a good cook. I'm a fantastic eater. - Steven Brust
  28. Re:stupid by smagruder · · Score: 2

    Tell that to my 46-y.o. eyes that can barely decipher these increasingly difficult eye puzzles, and I have a computer engineering degree. Think about others, will you?

    --
    Steve Magruder, Metro Foodist
  29. Not at all by oGMo · · Score: 1

    This kind of thing shouldn't be hard at all. You don't need complicated logic puzzles or any such thing. You just need something that's hard for a computer to figure out, but easy for a human.

    For instance, render a 3D scene and ask a question about perspective. "What is the person holding in her right hand?" "What is the person looking at?" and similar such questions. Trivial to render. Hard to figure out, because it's far beyond simple image recognition: you have to see and interpret what's going on in the scene. It doesn't have to be confusing or hard at all. (And rendering is super cheap these days.)

    --

    Don't think of it as a flame---it's more like an argument that does 3d6 fire damage

    1. Re:Not at all by oGMo · · Score: 1

      Wow poor edit sorry ... should be: "Trivial to render. Hard for a program to figure out ... It doesn't have to be confusing or hard for a human at all."

      --

      Don't think of it as a flame---it's more like an argument that does 3d6 fire damage

    2. Re:Not at all by ZombieBraintrust · · Score: 1

      You need problems that are generated by computer that are hard for a computer to answer. In your example the computer program rendering the image must understand perspective, english grammer, and handiness.

    3. Re:Not at all by amicusNYCL · · Score: 1

      you have to see and interpret what's going on in the scene

      You realize that many of the people complaining about captchas are blind, right?

      --
      "Our two-party system is like a bowl of shit looking at itself in a mirror." - Lewis Black
    4. Re:Not at all by stewsters · · Score: 1

      This is far harder for a blind person than the audio captchas we would be getting rid of.

    5. Re:Not at all by Anonymous Coward · · Score: 0

      It doesn't matter if it's hard for computers because spammers have used Amazon turk-like services and pay fractions of a penny for each answered question, but it does attack the economics of spamming because labour as cheap it is in the 3rd world is still significant bump in cost. If you use questions that an uneducated, poor 3rd worlder can't answer then it's game over for spammers. Anybody that can answer them will not work for pennies.

    6. Re:Not at all by Obfuscant · · Score: 5, Funny

      You realize that many of the people complaining about captchas are blind, right?

      Easily solved with an appropriate ALT tag, something like "A picture of a person holding a frankfurter in her right hand." In fact, can't all CAPTCHAS be fixed by simple use of the appropriate tag? "A picture of the characters E, Q, 3, 6, T and 9".

    7. Re:Not at all by Anonymous Coward · · Score: 0

      Are you serious? That's like leaving the key in the lock. Great security there. The bots can read the alt tags.

    8. Re:Not at all by mpeskett · · Score: 1

      Are you serious?

      I seriously doubt it.

    9. Re:Not at all by YukariHirai · · Score: 1

      Easily solved with an appropriate ALT tag, something like "A picture of a person holding a frankfurter in her right hand." In fact, can't all CAPTCHAS be fixed by simple use of the appropriate tag? "A picture of the characters E, Q, 3, 6, T and 9".

      If by "fixed" you mean "made trivially easy for bots to answer", sure.

    10. Re:Not at all by Anonymous Coward · · Score: 0

      You realize that many of the people complaining about captchas are blind, right?

      Easily solved with an appropriate ALT tag, something like "A picture of a person holding a frankfurter in her right hand." In fact, can't all CAPTCHAS be fixed by simple use of the appropriate tag? "A picture of the characters E, Q, 3, 6, T and 9".

      Works on all CAPTCHA-busting bots that are incapable of reading alt tags, so we're back to square one.

      A while back someone posted a way to use speech recognition to robo-solve the audio CAPTCHA provided for the blind.

      A tricky problem, this.

    11. Re:Not at all by Anonymous Coward · · Score: 0

      The frankfurter in your hand is wooshing, Mr Coward.

    12. Re:Not at all by Anonymous Coward · · Score: 0

      Then bots can try to guess from the ALT tag, especially since the formatting of the sentence is guaranteed to be limited due to being generated by a computer. Congratulations!

    13. Re:Not at all by Anonymous Coward · · Score: 0

      and a bot couldnt read the alt tag why?

    14. Re:Not at all by Anonymous Coward · · Score: 0

      I'm sure it would be difficult for a bot to read the HTML for the alt tags...

    15. Re:Not at all by mysidia · · Score: 1

      Are you serious? That's like leaving the key in the lock. Great security there. The bots can read the alt tags.

      You may still get away with it if you are the one site that does it.

      The key has been placed on top of the doormat, but the bots currently in the wild are not designed to look on top of the doormat, only under it.

    16. Re:Not at all by Anonymous Coward · · Score: 0

      the instant that was in use you'd have them being parsed by the bots quite easily.

    17. Re:Not at all by LordLimecat · · Score: 1

      You forgot to mention that you need to specify that the page should not be spider'd in your robots.txt, so that the spambots know that they shouldnt parse the page. Setting the evil bit to 0 may help as well.

    18. Re:Not at all by Anonymous Coward · · Score: 0

      We should probably ban all movie posters too.... Or, perhaps people should accept that we all have limitations, live within them, or grow beyond them. Are you telling me that the blind person is unable to LISTEN to the audible of the captcha sequence? I find it a pain, but no more so than reading the letters, and a blind person should theoretically be better equipped to focus audibly without the distractions of visual processing.

    19. Re:Not at all by Anonymous Coward · · Score: 0

      Great. Did you read the summary? How the fuck is your idea accessible to blind people?

    20. Re:Not at all by Anonymous Coward · · Score: 0

      "I'm sorry, you're too poor to post right now, please try again later."

  30. it's a pain by renegade600 · · Score: 1

    there are a few websites I want to access but cannot because their CAPTCHA is unreadable. Some of them are just way too complicated to read. I use it on my own blog but it is simple enough so you can get it the first time. It would be nice if there was some other way to prevent bots.

  31. Re:stupid by Anonymous Coward · · Score: 0

    If you want to buy tickets like the guy in the story, it is your problem when they are all sold out in seconds to scalpers using scripts. So, what's your solution, lone smart man, if everyone else is so stupid?

  32. Please note... by fahrbot-bot · · Score: 1

    ... the Feedback page for TFA blog has a CAPTCHA.

    --
    It must have been something you assimilated. . . .
  33. Re:stupid by AchilleTalon · · Score: 2

    It is possible to train an algorithm to recognize CAPTCHA, even if the success rate isn't 100%, it is high enough to enable bots to register on websites with CAPTCHA. So, Australia is only pushing people to find out better solutions than CAPTCHA. In short term, a large amount of spammers will rely on optical recognition algorithms to decipher CAPTCHA anyway.

    --
    Achille Talon
    Hop!
  34. Then create a better solution. by Anonymous Coward · · Score: 0

    Go ahead, create a better solution and we will be waiting.

    It must be capable of being hit many thousands of times per second, so it can't be heavy on resources.
    It must be capable of being displayed in any browser from the past 5 years at least, 10 preferable.
    It must absolutely not be plugin based.
    It must have absolutely no sound unless requested.

    I had an idea myself of having fuzzy cats and dog pictures, stretched, skewed. noise added and rotated, all up to a maximum value before it becomes too noisy.
    Grayscale, color would be applied to them. Option of even having virtually weird colors that aren't natural.
    The hugely identifying features of the face would be blocked out, cats and dogs are still pretty identifiable by body, regardless of face being visible or not, but it may still be stupidly hard for computers to figure that out without huge resource requirements.
    That slapped on top of a fuzzy background.
    Each image is pregenned in batches of however many the server operator can be bothered to generate, or just semi-realtime.
    They are not generated on the client end, ever.
    Count the dogs or cats.
    Problem is this fails the resource part in that they are particularly heavy to generate as well as transmit. (even as a JPG)
    To be of any use, they would also need to be fairly wide, tall or generally just fat.

    It could work and anyone is free to steal the idea. If you could get it to work and work well without too much in terms of resource usage, I applaud you and wish you much success. It is not something I care enough to implement myself, unless I were to go ahead with making that website, but that is unlikely at present.
    Who knows, I could be using the idea I gave you for my own site one day. Think of all that fame you would get, "The person that killed CAPTCHA".

    Of course, image recognition is getting considerably better as each year passes.
    There are systems that use huge numbers of image caches and machine learning to figure out captchas.
    These are typically only reserved for people that can afford to pay for it.
    But power increases constantly. And those cards designed for bitcoin mining are very useful for such a task of cracking and comparison in general.
    It could be cracked very easily if it is far enough ahead.

    And before anyone mentions it, Rapidshare isn't the inspiration for this, I had this idea before I even knew of Rapidshares existence.
    Equally, Rapidshares attempt at it was absolutely terrible and abusively bad, half of those pictures were impossible to tell even for humans! (which is for obvious reasons to get more money, which will happen rarely and it just pisses off the people who wanted a file)

    1. Re:Then create a better solution. by amicusNYCL · · Score: 1

      Any solution that uses images fails. You need to account for blind people. Hidden form fields are the answer! Don't require people to do anything extra!

      --
      "Our two-party system is like a bowl of shit looking at itself in a mirror." - Lewis Black
  35. Re:stupid by smagruder · · Score: 1

    There are plenty of other technical measures available these days. Captchas are unnecessary.

    --
    Steve Magruder, Metro Foodist
  36. some particularly douchy sites "monetize" captchas by Anonymous Coward · · Score: 0

    solvemedia and other advertising scum let webmasters make money off of annoying their users

    why would they give that up?

  37. Re:stupid by smagruder · · Score: 0

    Not if you employed other technical measures. Search around a bit and you'll find captchas are unnecessary.

    --
    Steve Magruder, Metro Foodist
  38. It's really taking off! by Anonymous Coward · · Score: 1

    The campaign support page already has 17 billion supporters!

  39. Re:stupid by Anonymous Coward · · Score: 0

    You keep posting this, yet you can't name one.

  40. idea by edxwelch · · Score: 1

    Get rid of them and replace with simple maths question:
    http://farm3.static.flickr.com/2174/2268237733_cda4a1dbb3.jpg?v=0

    1. Re:idea by loufoque · · Score: 2

      wolfram alpha can solve this captcha better than a human can

  41. Re:stupid by Anonymous Coward · · Score: 0

    If taking a couple seconds to answer a CAPTCHA is too much effort, I probably don't really care what you have to say in the comment section.

    It's not longer just a couple of seconds when one has to hit the reload button a dozen or so times before they get a CAPTCHA that's remotely readable.

  42. Re:stupid by pla · · Score: 3, Interesting

    Yes it is stupid. I understand that spam is a problem, but if you run a website, it's *YOUR* problem. CAPTCHAs make it *MY* problem and that's just stupid.

    You assume the website needs you more than you need it. For the standard commercial "wall of ads with some random content between" site, sure, what you say holds true

    For a lot of smaller interest-group-themed sites, usually run by a handful of non-IT-gurus, put bluntly you need them more than they need you, and they don't have a full-time body around to read through all new posts to purge the spam.

    Now, personally, I prefer the "math word problem" style CAPTCHAs - Because not only do they not discriminate against the blind or the old, they effectively keep out the spam and the stupid. Win-win!

  43. Until AI improves by schneidafunk · · Score: 1

    We have AI units that are equivalent to 4 year old kids. How much longer until they can defeat standard CAPTCHA systems?

    --
    Some people die at 25 and aren't buried until 75. -Benjamin Franklin
    1. Re:Until AI improves by serviscope_minor · · Score: 1

      That system gets IQ tests as good as a 4 year old.

      We certainly do not have general AI systems that are a patch on 4 year olds. Try comparing a 4 year old to even the most sophisticated computer vision object detection schemes, for instance and you will see how very far we still have to go.

      --
      SJW n. One who posts facts.
  44. Is this needed? by JustAnotherIdiot · · Score: 1

    CAPTCHA may be popular with with webmasters and others running different sites, but it's a source of annoyance to blind and partially sighted people — and dyslexic people and older ones — who often end up being locked out of important websites as they can't read wonky, obfuscated letters

    CAPTCHAs tend to have an audio button where a string of numbers is read off to you.
    Even Slashdot has a "mp3" button that reads the letters on the CAPTCHA off to you.
    Doesn't that already help all the above people with issues listed here?
    (Except possibly the "older ones", who may have hearing issues too.)

    --
    What do I know, I'm just an idiot, right?
    1. Re:Is this needed? by iggymanz · · Score: 1

      just for fun I clicked one of the mp3 links on my mac here at work. A popup appeared saying QuickTime was not equipped to support the media but would I like to search for one.

      So no, that would not seem to help the people listed there.

    2. Re:Is this needed? by Thry · · Score: 1

      Slashdot's may be functional, but try out a reCAPTCHA one - it sounds like too much salvia.

    3. Re:Is this needed? by Nemyst · · Score: 1

      ReCAPTCHAs are actually one of the very few CAPTCHA systems which work without Javascript - a big accessibility bonus for text to speech.

  45. Re:stupid by mstefanro · · Score: 2

    Care to elaborate?

  46. The summary is wrong by Anonymous Coward · · Score: 0

    Bots can read most captchas being used.

  47. Re:stupid by Thry · · Score: 5, Interesting

    I was about to tell you to take advantage of the audio alternative offered by many services, then I went and tried a reCAPTCHA audio test to make sure I knew what I was talking about.

    I apologise for even considering telling you to use those.

  48. Re:stupid by icebike · · Score: 5, Interesting

    If taking a couple seconds to answer a CAPTCHA is too much effort, I probably don't really care what you have to say in the comment section.

    Or a couple of minutes considering most capchas are illegible.

    This!

    More and more, captchas take two or three attempts.
    (Disclaimer: IMHO, I'm not senile, dyslexic, a horrible typist. blind. Your opinion may vary).

    I suspect some sites are intentionally forcing a fail once or twice, at least occasionally, especially when you enter the word
    in a timely interval. Bots probably give up after two failures, and they probably answer quickly.

    So implementers make it more and more restrictive and throw in bogus failures.

    --
    Sig Battery depleted. Reverting to safe mode.
  49. Re:stupid by mstefanro · · Score: 1

    Because we all know computers are terrible at doing arithmetic and solving simple equations

  50. Re:stupid by noh8rz10 · · Score: 3, Informative

    i've been using minteye on my site. it's a visual captcha, works pretty well. you move a slider back and forth to unscramble an image.

  51. Good riddance by roc97007 · · Score: 1

    I've become convinced that the purpose of captcha is to punish regular users. I strongly suspect that spambots merely push the re-captcha link until they get a pattern that's easier to parse.

    --
    Oliver's law of assumed responsibility: If you're seen fixing it, you will be blamed for breaking it.
    1. Re:Good riddance by Derekloffin · · Score: 1

      Indeed. A couple sites I visit have captcha's on their login pages, not account creation, login, and the really annoying ones that even I, a well sighted person, can't read about 1/2 of them. I know they want to avoid spambots, but seriously, why do I need this stuff when I already have an account? You afraid someone is going to hammer the login? Well, I can tell you implementing a simple couple second timer is far less annoying than those captcha's are.

  52. I've never used CAPTCHA'S by corychristison · · Score: 5, Informative

    I've been developing websites over 10 years and have never needed a captcha system.

    This is how I always go about it:

    1) Include a form input element labelled as something common, like a telephone number but on a registration form that would never actually require a telephone number. Hide the parent div using CSS in an external CSS file. When the form is submit, check to see if the element is filled out. If it is, simply display a message that you think their registration may be automated and to try again. If it continues, please contact us by other means (phone, email, etc) and we will help them through it.

    2) Time the registration from the time the page is loaded to the time it is submit, if its less than 10 seconds, do the same as above, simply display a message saying you think their registration is automated and to try again, etc.

    When used in conjunction I feel I've cut out 99.9999% of spam or false registrations. The timing method has to be done server side and stored in a session, and is fairly involved so not easy to do properly if you are new to web development. There is also the issue of someone hitting the back button to try again after a failed submission (if you don't use client-side validation), and them submitting from a cached page, but can be worked around if you know what you are doing.

    Obviously its not bullet proof, and if the CSS file doesn't load then someone would see the extra form element. But its a small price to pay for effective protection.

    Anyone else have other methods they use?

    1. Re:I've never used CAPTCHA'S by Quirkz · · Score: 4, Informative

      I've done some custom questions. Something simple, like "what is this forum about?" or "what's the name of the game this forum is for?" Something a person would immediately know, but a bot wouldn't.

    2. Re:I've never used CAPTCHA'S by Anonymous Coward · · Score: 0

      This is great for you because you're the only person doing it. Once everybody starts doing it, the automated CAPTCHA solvers will somehow incorporate that, and it will no longer be effective.

      dom

    3. Re:I've never used CAPTCHA'S by Anonymous Coward · · Score: 0

      >> what is this forum about?

      News for nerds; stuff that matters?

    4. Re:I've never used CAPTCHA'S by Anonymous Coward · · Score: 0

      And now that you posted that, spammers are adapting their bots to accommodate for your strategy. CAPTCHA might not be very fun, or the best solution, but it's a lot better than most solutions. Takes computing power to try to OCR a twisted up CAPTCHA. I think I read a while back, it's actually worth it to spammers to pay low-cost laborers to solve CAPTCHAs on their behalf.

      Your ideas are interesting and they would work, but then you just told the world what you do. I think your spammer registrations are gunna skyrocket now.

      Now I'll go answer today's CAPTCHA to post this.. I really don't mind, it's all of a few seconds of my life. Not a big deal.

    5. Re:I've never used CAPTCHA'S by Dynedain · · Score: 4, Informative

      If you are a high-profile site, the spammers will build rules to handle your specific form edge case.

      --
      I'm out of my mind right now, but feel free to leave a message.....
    6. Re:I've never used CAPTCHA'S by Anonymous Coward · · Score: 0

      If you are a high-profile site, the spammers might find it worthwhile to solve the CAPTCHAs by hand too. You can't stop them if they're dedicated enough. This is particularly true if you are gmail or something like that, where once you get an account it doesn't require any further validation to send lots and lots of emails.

      You can't stop humans from using your site; you don't actually WANT to stop humans from using your site. All these anti-spam methods only work against the most mindless robots, and that's a feature.

    7. Re: I've never used CAPTCHA'S by xebecv · · Score: 1

      It might work if your web sites are not particularly popular. Above a certain threshold of popularity, spammers might actually personally visit your site to fine-tune their spam scripts.

    8. Re:I've never used CAPTCHA'S by darkfeline · · Score: 2

      Thank you for that information. We will keep that in mind while we work on the next version of our spambot.

    9. Re:I've never used CAPTCHA'S by Anonymous Coward · · Score: 0

      The method is decent, with the caveat that it only works for relatively insignificant targets. If somebody is going to be coding an attack against your specific site, it will fail, in a relatively short amount of attacker time.

      A thing I've done is SMS verification - it's relatively expensive to burn phone numbers, so it effectively block out most spammers. This also scales to the big leagues.

      I've also used captchas where this wasn't feasible - we had many thousand of bad submissions a day, and it was painful for the support people to handle, and requiring phone verification wasn't feasible - and this was a custom bot setup.

    10. Re:I've never used CAPTCHA'S by Anonymous Coward · · Score: 0

      I've been developing websites over 10 years and have never needed a captcha system.

      You wouldn't if you're developing your own sites. I have a web forum that doesn't even require creation of an account to post a message, yet it hasn't seen a single spam posting in the decade it has been online. The reason is rather simple: The forum software only runs on my web site. It isn't worth targeting with a bot.

      The problem arises when you're developing everyone else's site, e.g. you write some popular blog software that's used all over the internet. When your software is used on only your web site, it isn't worth developing a bot to create registrations. You'll detect the activity soon enough and take steps to block it, and so all of the time invested in the development of the bot will have been wasted.

      However, if you distribute your software, that changes. Not everyone who runs your software will be smart enough to detect the spam activity and block it. So someone will develop a bot to target your software. They'll make it answer any clever questions like "what is 5 + 8" even if you randomly generate the numbers. They'll program it to use a wide array of email accounts they've registered to accept registration emails. (That's something else that, like captchas, I wish web sites would stop doing. Trying to get by on the internet without an email address makes you a second-class citizen.) Once the software works (they'll be testing it against a copy running on their own servers, so they can see how the software reacts to the bot), they'll code it up to do some Google searches for anything that appears on the software's pages (like "Powered by SuperCoolBulletinBoard" or something) to find random installations of the software, and it'll create accounts on those random people's web sites. Some will notice, and they'll add new random fields (like "type 'spam' into this box") which will trip up the bot and end their personal spam problem, but most won't know how to do that, and so the investment in coding the bot will be largely successful.

      However, you'll note that I've just mentioned a rather simple solution. If you allow everyone who installs your software to easily supply a few of their own questions and answers, there's no way someone can code a bot to handle something as arbitrary as that. The questions don't even have to have varying answers. I had one spam account per day being registered on a forum I installed until I added "please type the word 'spam' into this box" on the registration page, which broke the bots and ended the problem. I even coded a correct error page that tells them to go back and type 'spam' into that box. These bots are not even remotely intelligent. They can't answer free-form questions, so if the installation of the software gives you a free-form field in which to supply a totally random question, and a field in which to give the answer, there's no way anyone can code a bot to answer questions so arbitrary without developing artificial intelligence.

      So at best, someone could write a bot to target such software, with the requirement that a human babysit it and answer these questions for each site it finds to create an account on, but at that point, spammers are no longer interested. Spammers aren't about working for their rewards. They want to just run some software and have it make money for them while they're out fucking whores and spreading STDs. So they'll target someone else's software instead.

    11. Re:I've never used CAPTCHA'S by Anubis+IV · · Score: 2

      Ironically, what you've described is a form of CAPTCHA. "CAPTCHA" doesn't just refer to obfuscated text, but is rather any public-facing Turing test designed to tell the bots and humans apart from each other. The funky text stuff is just the most common variety, but trivia questions, object recognition, etc. can all be forms of CAPTCHA as well.

    12. Re:I've never used CAPTCHA'S by Anonymous Coward · · Score: 0

      It's not just bots but an army of indians that are paid 0.01cent per registration that go around and manually create accounts that's the problem. One solution is to block out entire countries that do this, but you may block some of your audience that way as well. This also doesn't stop proxy registrations either. There's almost nothing you can do to prevent spam registration, even if you hide fake fields and check for them. You can certainly block regions, and browser types but that will only block maybe 30% of them.

    13. Re:I've never used CAPTCHA'S by Anonymous Coward · · Score: 0

      Buddy, if you're building spambots and you're not already aware of the methods described in the GP you're a big failure. Many websites, including the ones I build use the same methods, plus a few others. But I'm guessing you don't even build spambots, you're just trying to make a snide remark about something you know nothing about.

    14. Re:I've never used CAPTCHA'S by cdrudge · · Score: 1

      If this isn't already in the current version of your spam bot, you are seriously behind the time. This technique has been used for relative ages in forum registration, blogs, etc.

    15. Re:I've never used CAPTCHA'S by Anonymous Coward · · Score: 0

      Right. This wouldn't work on Gmail, for instance.

    16. Re:I've never used CAPTCHA'S by Anonymous Coward · · Score: 0

      You probably also eliminated a few Apple users, since Safari will fill out a form completely and really fast as soon as you start typing in a form and it matches your own entry in the address book.

      Less than 10 seconds, and the telephone number is filled in as well.

      Depending on how good your website is, I may not contact you to fix the problem.

    17. Re:I've never used CAPTCHA'S by AmiMoJo · · Score: 1

      These days they just hire some people living in the 3rd world to fill out the forms for them.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    18. Re:I've never used CAPTCHA'S by cavebison · · Score: 1

      Thanks, I'll try implementing the hidden common field (if there's already a phone field, I'd just call it "phonereal" or something and the hidden one stays "phone". Instead of hiding it, another tactic may be to put it inside a 1x1 pixel "overflow:hidden" DIV. You could also set the border to "none" and the input box very small, essentially hiding it in plain view. Or absolutely position it off the screen (eg. left: -100px). Or all of the above just to make sure. What's the idea of the CSS in a separate file? Why not in the HTML page, or even inline?

      But my 99.99% successful tactic to date (over the past year anyway) has been to use a jQuery get() to call the form HTML from the web site. So, when the page first loads, there is no form at all, and no hint of a form being there. I can only assume bots are looking at the page and deciding there's "nothing to see here" and/or can't be bothered running a webkit client and loading a lot of JS - which is understandable if they need to be quick and efficient. So people see the forms, but bots seemingly don't. I've had maybe 10 "manual-looking" spams (ie. friendly one-liners) in a year, but nothing which looks like a bot (ie. elaborate, formal or includes links/html).

      I think if both this and your "honey-pot" approach is combined, it might be a winner?

    19. Re:I've never used CAPTCHA'S by cavebison · · Score: 1

      Thank you for that information. We will keep that in mind while we work on the next version of our spambot.

      jQuery is the way to go to get around most bots, which need to be quick and efficient, so can't be arsed running a complete Webkit implementation and loading a lot of extraneous JS & CSS just to put some crap in a form. That would be a far too inefficient way to scrape sites for forms - it's not even "scraping", it's loading the entire page in a browser every time, running the JS and checking the DOM when it's all done.

      I assume not many bots are going to employ that method just to spam a contact page. Probably just the ones targeting high profile things, like Wordpress sites, with exploits.

    20. Re:I've never used CAPTCHA'S by Anonymous Coward · · Score: 0

      And if I was a unicorn, I could stab you with my head. What's your point?

    21. Re: I've never used CAPTCHA'S by corychristison · · Score: 1

      The specific reason I suggest an external CSS file is to rule out simple parsing of the DOM/CSS. Also because I put everything in cacheable, minified CSS files. Just a matter of preference, really. I intentionally avoid Javascript solutions to make it simpler for me, and so I don't rule out the odd user using NoScript or similar. As others have mentioned, it is very commonly used. And typically inneffective on high traffic sites. I run a business doing design/development/hosting where 80% of my clients are local SMB's (although I am currently in the process of expanding into virtual server hosting, but that is another story). The described methods work for me and my clients. There are clearly much more complex routes you could take, but usually at a cost of causing more problems than it is worth. Just my opinion, though.

    22. Re: I've never used CAPTCHA'S by corychristison · · Score: 1

      I didn't want to get too indepth but I have covered that issue simply by using autocomplete="off" on thr form, and input elements.

      To take it even further I generate the form field 'name' & 'id' tag attributes at random on page generation, and store a 'map' in the session data to un-obfuscate it on the submitted page. My session handling implementation prevents session hijacking, also.

  53. My first anomynous coward post on Slashdot by Anonymous Coward · · Score: 0

    I had to post this as an anoymous coward, because i have to state an unpleasant truth that every single web site operator out there who isn't disabled will agree with 1000%, but can't publicly admit unless they wanna get flayed alive by the disabled lobby.

    Get rid of captcha, not on YOUR life. I have a forum with 30 active volunteer moderators and without captcha they would spend every waking moment of every day removing bot posts non-stop. If we make a captcha that is just as easy to read with a screen reader or braille display as a sighted person, a computer can read them as well, defeating the purpose and making the whole system useless. Sorry it is not gonna happen. YOU have a disability that limits you, so get used to it. The basic fact is YOU can't penalize everyone else in the world because of that fact.

    http://en.wikipedia.org/wiki/2081_(film)

    LOL I have to submit a Captcha code to post this to Slashdot, I love the irony!

    1. Re:My first anomynous coward post on Slashdot by flimflammer · · Score: 1

      LOL I have to submit a Captcha code to post this to Slashdot, I love the irony!

      How is that ironic?

    2. Re:My first anomynous coward post on Slashdot by Anonymous Coward · · Score: 0

      Well, it's like rain on your wedding day, or a free ride when you've already paid.

  54. Re:stupid by icebike · · Score: 3, Informative

    It is possible to train an algorithm to recognize CAPTCHA, even if the success rate isn't 100%, it is high enough to enable bots to register on websites with CAPTCHA. So, Australia is only pushing people to find out better solutions than CAPTCHA. In short term, a large amount of spammers will rely on optical recognition algorithms to decipher CAPTCHA anyway.

    True, but I think the OPs point is those smart bots are not that frequently encountered. We know it can be beat, but in everyday life it is still not common to encounter such bots, and even when you do, you end up blocking 98% of the bots.

    As those bots become more common, captcha will become less and less useful. Its a self solving problem that probably doesn't need any help from government, because government will invariably impose something more stupid and useless.

    --
    Sig Battery depleted. Reverting to safe mode.
  55. Re:stupid by Anonymous Coward · · Score: 0

    If you want to buy tickets like the guy in the story, it is your problem when they are all sold out in seconds to scalpers using scripts. So, what's your solution, lone smart man, if everyone else is so stupid?

    auction the tickets, then the venue owner will get the market price

    sell cheap "standby" tickets at the door, if the original ticket holders don't show up in time then then their tickets are voided and the standby crowd gets to go in

  56. It's not just a matter of registration by roc97007 · · Score: 1

    One time registration is one thing -- I can just punch the re-captcha until I get something I can read. (But if I can do that, couldn't a bot do it too?)

    It's the sites that require captcha for each login that really chaps my ass. Yeah, I'd vote for it to go away.

    --
    Oliver's law of assumed responsibility: If you're seen fixing it, you will be blamed for breaking it.
  57. Re:stupid by prestonmichaelh · · Score: 1

    Not if you employed other technical measures. Search around a bit and you'll find captchas are unnecessary.

    In all sincerity, can you post some links? I'll even take an insulting "lmgtfy" that end up with some good results.

    I hate captchas, but all the other methods I have seen and tried (hidden form elements, javascript checks, etc.) all break down in one place or another.

  58. Re:stupid by Teancum · · Score: 3, Insightful

    I'd be curious about what "technical measures" you are talking about. There are some "universal IDs" that help to filter out some of the spam, but it still can slip through in a way that Captchas help prevent. There is also something philosophically wrong with trusting in some huge 3rd party vendor like Facebook, Microsoft, or Google to be processing authentication on your website, not to mention concerns about the NSA tracking everybody who is logging into your website as well.

    Again, I'd be curious about what technical measures you are talking about.

  59. Re:stupid by Anonymous Coward · · Score: 0

    Maybe they're a spambot and consider their not being able to use captchas a disability.

  60. Simple Solution by Anonymous Coward · · Score: 0

    There is a simple solution to all this;

    Use CAPTCHA's that have the audio button that speaks the CAPTCHA instead of looking at it.

    Sight issues? Solved
    Hearing Issues? Use the visual CAPTCHA
    sight and hearing issues? If you cant see or hear then a computer is not for you. Stop trying to use a computer, you have much bigger issues to deal with.
    Intelligence/mental issues ( e.g. cant add 8+5)?: operator failure, operator is too dumb to use a computer, replace operator.

    This solves problems for 99.999% of people. It is not worth it to piss off 99.999% of people to make the 0.001% of people pass through a CAPTCHA.

  61. Re:stupid by Belial6 · · Score: 2

    I'm not a fan of CAPTCHAs, but your statement makes no more sense that declaring passwords bad because it is the websites problem, not yours.

  62. Great news for those without Old English keyboards by ambanmba · · Score: 2

    Looking forward to not needing to look for the "Long S" character on my keyboard anymore http://blog.ambor.com/2013/07/an-unexpected-risk-of-using-re-captcha.html - I'm always worried that my employer is filtering on words like goatfucker when I mean to write goat(Long-S)ucker.

  63. Re:stupid by Anonymous Coward · · Score: 1

    The easy thing for you to do would be to simply detect if the user is in Australia, and simply ban them from your website.

    If this law passes, and most websites just refuse to serve Australians, then the fault, blame, whinging and recriminations can lie solely with the law and the people who created/passed said law.

  64. Re:stupid by mrjb · · Score: 1

    More bitching. Got a better idea to prevent bots from signing up?

    --
    Visit http://ringbreak.dnd.utwente.nl/~mrjb/growingbettersoftware to download your free copy of the book
  65. Re:stupid by icebike · · Score: 3, Informative

    i've been using minteye on my site. it's a visual captcha, works pretty well. you move a slider back and forth to unscramble an image.

    I never heard of it, and upon googling it, their own website wouldn't couldn't get pass my no-script. So right there, a significant and growing number of customers would be turned away.

    But, I wonder of that would remain effective, after all, bots already exist to recognize letters in images. (Those bots existed before captcha). So as soon as Minteye becomes popular it will be bot-stormed.

    I've also seen the word games, these are fairly unique as well. But I'm not sure they couldn't be attacked as soon as they become popular. It almost seems that obscurity is the best we have these days.

    --
    Sig Battery depleted. Reverting to safe mode.
  66. Re:stupid by ancientt · · Score: 1

    Twilio. Facebook Connect. Twitter @Anywhere. OAuth. OpenID.

    I wasn't posting that, but it is kinda obvious what some better ideas are.

    --
    B) Eliminate all the stupid users. This is frowned upon by society.
  67. The problem is the symbols by Karmashock · · Score: 1

    The "which of these pictures is a kitty" or the question "what is 1+1=?" are superior. The distorted text is irritating.

    And as to the deaf... most CAPTCHA's will offer a "press to speak" feature.

    --
    I've decided to stop wasting my time responding to AC trolls/sockpuppets... so if you want a response from me... login.
    1. Re:The problem is the symbols by Smauler · · Score: 1

      And as to the deaf... most CAPTCHA's will offer a "press to speak" feature.

      Very useful ;)

  68. Idiocracy is now! by Anonymous Coward · · Score: 0

    You know you live in a magical world when people are suggesting changing things in a way that would negatively affect the majority just to make cripples and broken people happy. First they abolished slavery, then they let them live in and run Detroit, and now they want to get rid of CAPTCHAs. What's next?

    Are we getting to start letting people stay in the US Military when they are physically and/or mentally incapable of performing their jobs?

  69. solution by Khashishi · · Score: 1

    The solution is not to make it harder for spammers to post. The solution is to murder spammers after they post.

  70. Re:stupid by icebike · · Score: 5, Insightful

    If taking a couple seconds to answer a CAPTCHA is too much effort, I probably don't really care what you have to say in the comment section.

    It's not longer just a couple of seconds when one has to hit the reload button a dozen or so times before they get a CAPTCHA that's remotely readable.

    And half the sites bit-bucket at least some of the data you've entered just as further punishment. So you have to type that in again.

    Show me the captcha before I enter any data please. That alone would confuse half the bots out there. (For a while).

    --
    Sig Battery depleted. Reverting to safe mode.
  71. Just require an email by loufoque · · Score: 0

    Simply require an email address and maintain a blacklist of bad domains.

  72. Re:stupid by icknay · · Score: 2

    Mozilla Persona http://www.persona.org/ is the new best one -- not tied to any corp, but without the usability problems of openid

  73. CAPTCHA is dead! Long live CAPTCHA! by Anubis+IV · · Score: 5, Insightful

    People seem to forget that the term "CAPTCHA" (Completely Automated Public Turing test to tell Computers and Humans Apart) applies to a much broader set of tests than just those obfuscated text-based things that most of us loathe. Banning CAPTCHAs is a silly notion that would adversely affect every site currently using them, as they become swarmed by spammers. Instead of banning them, they should be asking people to use sane, simple CAPTCHAs.

    For instance, on a forum I run for a group in a game, I use a form of CAPTCHA that has people drag words into categories. As an example, if our group name was "Guild X of Y", I might make the categories "Words in our group's name" and "Words not in our group's name", then ask them to categorize the words "Guild", "Elephants", "X", "Tree", "Honor", "Plus", and "Ocean". I have about two dozen sets of categories and words configured, and so far it's had a 100% success rate at stopping spammers from registering. It's also made it easier for people to register, since the number of e-mails and other off-forum messages I've received complaining about the difficulty of the CAPTCHA has dropped to 0 while registrations have actually picked up.

    Such a system would obviously not work for Google or someone that large, since a spammer would just train the bot to know all of the answers, but for smaller sites, there are plenty of solutions that work just fine, and I'm sure we can find more systems that are simple for a human but complicated for a computer. No need to make something that's so complicated for a human to solve.

    Alternatively, go with xkcd's approach to solving the problem of spam.

    1. Re:CAPTCHA is dead! Long live CAPTCHA! by soccerisgod · · Score: 1

      I myself was thinking of this...

      --
      If a train station is a place where a train stops, what's a workstation?
  74. Popularity problem by Anonymous Coward · · Score: 0

    It's good that there are many different posting/comment systems like phpbb, vbulletin, even Slashdot. The more the merrier, which means the spammer needs to identify each and every one. If there is enough of them it's not worth it. Unfortunately people would opt for off-the-shelf solutions and this popularity/unity makes it more appealing for spammers: implement once, hack many. But a special case is if one site is big enough to take over thousands of small sites, really, this site needs a thousand different captchas in order to be as effective as a thousand small sites with their own captcha.

    And for all those suggesting math problems and such like that, you must not have a large userbase. If the userbase was large enough or enough forums use the exact same "captcha" you can count on spammers writing their automated scripts to handle math. I suspect if you were to require people to solve complex math, such as infinite series or complex integrals that possibly could not be interpreted properly by the program that could be figured out by a human, but I suspect a lot of real people will have difficulty to figure them out.

    I do like this possible solution that even Slashdot has used for anonymous coward: payload first, captcha later. It's a psychology problem: you already wrote what you want to write, just a little more and it gets posted. Coupled with it being unique helps a long way towards the spam problem. But this doesn't help against automated registration...

    Incidentally, the captcha I got for posting this was "ovaries" but I initially misread it as "varies" completely missing the o. #*(@# captcha... :(

  75. Re:stupid by IamTheRealMike · · Score: 3, Interesting

    The NSA and its friends already track who logs into your website (or at least the IPs that do) so I wouldn't worry about that one too much.

    One technical measure that has been floated recently is the idea of using Bitcoin. What you do is provably sacrifice some bitcoins to miner fees, thus creating a kind of anonymous passport. That proof of sacrifice has public keys embedded in it to which you own the private keys, and it was provably expensive to create. So the idea is that you sign up with your passport and then if you misbehave, it can get added to a blacklist kind of like how Spamhaus blacklists IP addresses. Now you can set the cost of abuse to a precise degree. Good users only have to pay once and can use the same passport for years. Abusers find their business models are unprofitable.

    Unfortunately the software and protocols for that aren't implemented yet.

  76. OCR is too good by Animats · · Score: 1

    Text-oriented CAPTCHA schemes are obsolete, especially as a way to get humans to help with book OCR jobs. If the OCR program can't read it with context, humans probably can't read it out of context. A sizable fraction of book-scan CAPTCHA images aren't even text, let alone words. I've seen ink blots, mathematical formulas, and Cyrillic in what were supposed to be English-language CAPTCHAs.

  77. Re:stupid by zieroh · · Score: 1

    Not if you employed other technical measures. Search around a bit and you'll find captchas are unnecessary.

    You keep saying this, and you continue to not provide any citations. Just because you say it is so does not make it so.

    I run a web forum that is attacked every single minute of every single day by spambots from China, Russia, India, and Pakistan. Captchas are one of several technical countermeasures I use to keep from being overrun with spam -- and by overrun, I mean really, seriously overrun. Forum spam is incredibly prolific.

    Each of the technical countermeasures stops some of the spam. Dropping captchas from the mix would allow far too much spam to get through. And yes, I've closely examined the contribution of each countermeasure.

    --
    People who say "sheeple" have about as much sophistication as an AOL user, and in fact are probably actually AOL users.
  78. Re:stupid by prestonmichaelh · · Score: 1

    Twilio. Facebook Connect. Twitter @Anywhere. OAuth. OpenID. I wasn't posting that, but it is kinda obvious what some better ideas are.

    So on a business site, you would require a user to log in with an account from another site/system before they could contact you to show interest, request a quote, etc.?

    I understand for web forums, etc, but my issue is contact forms on business sites. Most users don't want to share their facebook or twitter accounts and haven't heard of most of the other options.

    I did see another post about combining the hidden form element technique with a short submission timer that looked interesting though.

  79. Captchas were completely defeated YEARS ago by Arrogant-Bastard · · Score: 0

    They have precisely zero security value. Please see, for a brief introduction:

    http://phys.org/news/2011-11-stanford-outsmart-captcha-codes.html
    http://cintruder.sourceforge.net/
    http://arstechnica.com/security/2012/05/google-recaptcha-brought-to-its-knees/
    http://arstechnica.com/security/2008/04/gone-in-60-seconds-spambot-cracks-livehotmail-captcha/
    http://www.troyhunt.com/2012/01/breaking-captcha-with-automated-humans.html

    among others.

    Nobody who actually understands the nature of the threat would even CONSIDER using captchas at this point.

    Now...every now and then some poor naive fool stands up and says "But but but...they're working for us." No. They are not. You are simply not worthy of attack...yet. If you ever become a target, because someone has a grudge against you, or because you have an important resource, or merely because someone is bored, then if they are are at least minimally competent attackers, they will go right through your alleged "captcha" defenses without the slightest problem.

    1. Re:Captchas were completely defeated YEARS ago by Anonymous Coward · · Score: 1

      If you actually read the links you posted, you would know that apart from the ‘just hire humans’ approach, only 1 worked with Recaptcha and that problem has since been fixed. That article also makes it apparent that simple difficulty increases need not-so-simple AI increases to be overcome.
      And hiring humans isn't popular, probably because the response rate for Viagra spam is so low that even a tenth of a cent per captcha is simply too expensive.

    2. Re:Captchas were completely defeated YEARS ago by serviscope_minor · · Score: 1

      No. They are not. You are simply not worthy of attack

      Once you climb down from your exceptionally high horse, you will realise that that is the very definition of working.

      The *VAST* majority of spam is commercial spam. They routinely scour the entire internet looking for insecure forums and dump massive quantities of spam onto them. You don't have to tilt the economics very far in your favour before you're not worth the money to target.

      I run a small, special interest professional forum. The first time I tried to put it up, it was unusable. Captchas made it usable.

      And you're trying to tell me that it didn't work.

      hey will go right through your alleged "captcha" defenses without the slightest problem.

      And? Most places have a weak lock on the front door. A targeted attack would go through in seconds. That doesn't mean that the lock and door do not prevent the vast, vast majority of opportunists.

      --
      SJW n. One who posts facts.
  80. Re:stupid by N_Piper · · Score: 2

    If what presents itself as only the most barely notable disability in day to day life excludes me from your consideration as thoughtful well spoken adult due to a single special circumstance, I don't care too much about your comments either.

  81. Are you retarded? And how are we gonna stop spam? by Anonymous Coward · · Score: 0

    CAPTCHA has a *point*. It is to keep bots out. Which, with good CAPTCHA, works very reliably, and more importantly is the ONLY thing that actually decides based on the *correct* measuring point. As opposed to IP address blocks, pattern matching, and other cases of shitty engineering with *way* too high false-positive and false-negative rates.

    If you want to post, deal with it and enter the CAPTCHA. Otherwise you can just... you know... no post. That nicely keeps out the dumbfucks too.

  82. Re:stupid by plover · · Score: 4, Informative

    Minteye was very thoroughly broken.

    http://translate.google.com/translate?sl=ru&tl=en&js=n&prev=_t&hl=en&ie=UTF-8&eotf=1&u=http%3A%2F%2Fhabrahabr.ru%2Fpost%2F167359%2F&act=url

    Essentially, the guy realized that jpeg pictures with distortions should have a completely different size than the undistorted picture. But all pictures delivered by minteye were of identical length. He figured they were padding the files with zeros, and he was right. By counting the number of zeros at the end of the file, the local maxima/minima was the correct file. He wrote a few lines of javascript, and it was broke.

    --
    John
  83. Re:stupid by Anonymous Coward · · Score: 0

    Those don't replace captchas. They are alternative login methods that don't prove someone is human, only that they have an account to be used for this purpose somewhere else.

  84. Re:stupid by nbauman · · Score: 1

    How many blind people are there who use the Internet without assistance?

    I know blind people, and people who have very poor eyesight. Most of them are older. When I talk to them about computers, they're not interested. One woman with macular degeneration tried a screen reader, and didn't like it. (That's $10,000 worth of equipment sitting in her closet.)

    Back in the days of COBOL, there were a lot of training programs to teach programming to blind people. And there were a lot of successful blind programmers. There were braille printers. Then came Windows, and it got a lot harder for them to read the screens....

    There are laws that require organizations that serve the public to provide reasonable accommodations to the handicapped. I support those laws. A lot of people have problems with hearing or vision. A lot of people can't climb stairs.

    The question is, "What's reasonable"? If this were a widespread problem, and a million blind people can't read CAPTCHAs well enough to use Skype, that's a big problem and we might have to throw out CAPTCHAs. If it's just a dozen blind techies, maybe we could work out some simpler solution.

    It's a cost/benefit question. What's the scope of the problem?

  85. CAPTCHA is broken due to needlessly poor design by Anonymous Coward · · Score: 0

    My biggest problem with CAPTCHAs is that about 1/2 of the time they're ambiguous.

    For example, running the letters together is a common technique, but that makes it impossible to tell the difference between the letter "m" and the letters "rn" together.

    They're also twisting letters so badly now that they convert to other letters. For example, it doesn't take much to twist the letter "u" to "v", or to destroy the identifying features of the thin letters ("f", "i", "j", "l", "r", and "t").

    I've had cases where I needed to request a new CAPTCHA 4 or 5 times to get one that's not ambiguous. The technology is badly broken now. There's no reason they can't fix these problems, but they deliberately choose not to. A simple fix would be to screen out things like "rn" if they're running the letters together -- but after all these years, it's now clear that they're unwilling to do even these simple fixes to improve the user's experience.

  86. Re:stupid by dkf · · Score: 1, Insightful

    Because we all know computers are terrible at doing arithmetic and solving simple equations

    But they are. It's out of context, and it's much harder to make programs that are flexible like that. They're bringing a regular expression to an arithmetic party.

    --
    "Little does he know, but there is no 'I' in 'Idiot'!"
  87. Re:stupid by PPH · · Score: 1

    So you push the bot detection problem onto a third party. But when they are overrun, the smarter bot operators won't spam the identification sites. So these service providers will never have good statistics on which measures work and which don't.

    --
    Have gnu, will travel.
  88. Paid services by dumky2 · · Score: 1

    I have a solution. It's called paid services. Services where users have to log in and pay a subscription are much less susceptible to bots than free services. No CAPTCHA for users, less spam for hosts.
    Yet somehow I feel most of the slashdot crowd (and internet crowd in general) doesn't sympathize enough with service providers to consider this an acceptable alternative.

    --
    These comments are mine; I do not speak for my employer.
    1. Re:Paid services by YukariHirai · · Score: 1

      For me, it's less "doesn't sympathize enough with service providers" and more "doesn't see enough value in a webforum to think it worth paying a subscription for".

  89. Re:stupid by Spazmania · · Score: 1

    Or a couple of minutes considering most capchas are illegible.

    Hear hear! Captchas were fine when they started but lately they do this weird wavy thing. I have to hit reload a few times before I get one where I can make out all the letters... and my vision is just fine.

    --
    Moderating "-1, Disagree" is simple censorship. Have the guts to post your opinion.
  90. Re:stupid by game+kid · · Score: 3, Informative

    Facebook Connect is not a "better" idea.

    --
    You can hold down the "B" button for continuous firing.
  91. Re:stupid by Leslie43 · · Score: 3, Informative

    Agreed, my systems (combined) are hit every 3 seconds by spammers and hackers.
    While people may hate Captcha, webmasters do as well, until we have something that works at least as good, it stays, along with my other levels of fighting spam. It's imperfect, troublesome, and a hassle at times, but it's still one of the more effective anti-spam systems out.

    And no, I will not let you login from Twitter or Facebook or any other junk, that opens up a whole new host of issues.

  92. Re:stupid by Garridan · · Score: 2

    Looks like it's a flash-based captcha that applies a simple transformation to an advertisement. So, it forces your users to stare at your ads. It's got a huge flaw -- a human might need to decode each ad once to train a bot to decode every instance of that ad. Minteye will work until the point that it gets even a little popular. It would take a competent programmer with experience in image processing an afternoon to break this.

  93. Easier technology to circumvent captcha by symbolset · · Score: 5, Insightful

    Bad guys run some pretty high traffic sites that oddly enough, require captchas. Their client bots forward the real site captcha to the bad-guy site, which delivers it to a human who wants access to the bad-guy site and answers it - which answer is passed back to the bot and submitted to the legitimate site in real time. They also compromise legitimate captcha-secured sites for the same method. It's the Mechanical Turk method of defeating CAPTCHA. Machine learning of text recognition is not required.

    --
    Help stamp out iliturcy.
    1. Re:Easier technology to circumvent captcha by Goaway · · Score: 3, Insightful

      I have never seen any evidence whatsoever that this actually happens.

      It has been suggested many times that it could be done, but not once have I seen anyone point to it actually happening in the wild.

    2. Re:Easier technology to circumvent captcha by Anonymous Coward · · Score: 0

      There are actual sites you can pay to do this, for instance "Death by Captcha". Not sure about "tricking" users into solving a CAPTCHA for another site, but there are plenty of poor souls who get paid to do them daily. It's technically unbeatable, which is why modern methods take into account the rate at which solutions are coming from a particular IP. For instance, SolveMedia's "secure" captchas start to become unreadable after doing too many at once.

    3. Re:Easier technology to circumvent captcha by Anonymous Coward · · Score: 0

      I used to do it in order to batch downloads from free file hosts (rapidshare-style). A popular service was called 'captcha-trader', which was great because you could enter a bunch of captchas yourself to earn points, and then 'spend' the points by requesting automated captchas later on. (Plus it integrated into my downloading software)

      Now it looks like that site's down, but 'death by captcha' looks like a very popular replacement if you just want to pay.

  94. Re:stupid by cheekyjohnson · · Score: 1

    Facebook Connect. Twitter @Anywhere.

    Just no.

    --
    Filthy, filthy copyrapists!
  95. Re:stupid by Quantum+gravity · · Score: 1

    Agreed. I've found asking a question like "What is five plus seventeen?" is much more effective at keeping spambots out than any standard CAPTCHA.

  96. This is Australia by PPH · · Score: 1

    One of the Five Eyes Alliance. No doubt, the 'best' replacement for CAPTCHAs will be a centralized authentication/login authority. Or at least a few large outfits that can be arm twisted into linking everyone's accounts together. Like Google, Microsoft, OpenID, etc. Its just a variation of 'think of the children'. Think of the blind.

    No thanks. I'll keep my on-line personas separate.

    --
    Have gnu, will travel.
  97. ASCII Art CAPTCHA for the Win by spinozaq · · Score: 3, Interesting

    I recently started getting hundreds of spam signups a day on my site. So I installed a CAPTCHA to prevent that. I setup a standard image CAPTCHA with a plugin for the CMS. More then 80% of the spam sign ups just walked right through it. Then I changed the type of CAPTCHA to an ASCII art CAPTCHA. I haven't had a spam sign up since. The ASCII art CAPTCHA is also much easier to read then weird image CAPTCHAs.

    1. Re:ASCII Art CAPTCHA for the Win by hh10k · · Score: 1

      I think you miss the point of the original article. A blind user will find it impossible to register on your website.

      For my sign-up page, I replaced the image CAPTCHA with a text box labelled "Enter the text 'I am not a spammer'". This solved my spam problems, but neither of our solutions would work if our websites became popular and spammers decided to specifically target us.

    2. Re:ASCII Art CAPTCHA for the Win by spinozaq · · Score: 1

      Maybe, but I think an ASCII art is quite a bit more difficult to break, even if directly targeted. There is enough font and size variation that you would have to get an image and then use OCR. That's a lot of extra work.

    3. Re:ASCII Art CAPTCHA for the Win by Dynedain · · Score: 1

      In other words, the spammer's bots had rules to handle the particular image captcha you used, and didn't have rules for the ASCII one you chose.

      It might have been a bad CAPTCHA system, I've seem some that do stupid things like put the actual letters in ALT text or the image asset URL. Hell, I've seen one that draws the image using javascript, and the original letters are right in the source for anyone to harvest with basic scripting abilities. Those kinds of systems are easily broken, and when you know a large percentage of a particular CMS install base uses the same broken system, you end up with the experience you described.

      If your ASCII-based plugin becomes common, I guarantee the bots will start detecting and bypassing it.

      --
      I'm out of my mind right now, but feel free to leave a message.....
    4. Re:ASCII Art CAPTCHA for the Win by Andreas+Mayer · · Score: 1

      The ASCII art CAPTCHA is also much easier to read then weird image CAPTCHAs.

      ASCII art should be rather easy to beat. Just blur the image and increase contrast.

    5. Re:ASCII Art CAPTCHA for the Win by Andreas+Mayer · · Score: 1

      Maybe, but I think an ASCII art is quite a bit more difficult to break, even if directly targeted.

      It's not. It's essentially just adding a bit of noise to the image.

    6. Re:ASCII Art CAPTCHA for the Win by Anonymous Coward · · Score: 0

      It wouldn't be impossible. I mean I'm sure someone here can figure out what this is:

      space, space, space, space, space, period, dash, dash, period, newline
      period, dash, dash, dash, dash, quote, space, space, space, quote, dash, dash, period, newline
      quote, dash, open paren, close paren, dash, dash, dash, dash, dash, open paren, close paren, dash, quote, newline

  98. Force the SpamBots to Moderate Your Forum for You by Stormy+Dragon · · Score: 2

    Instead of a CAPTCHA, show them two posts and indicate if none of them, one of them, or both of them are spam posts. Behind the scenes, one if a post you know for sure is good or not and one you don't know about.

    You can use the responses to rate users (how effective is this user at rating posts, based on how well they do identifying spam?) and posts (how likely is this post to be spam based on what users say about it?). Bad users and bad posts get booted from the system.

  99. Re:stupid by Garridan · · Score: 0

    ... but only because you asked for it: captchas are unnecessary.

  100. Re:stupid by longk · · Score: 1

    I bow to you, because to my simple brain many captcha's these days are a PITA. Enough of a PITA that I'll say fuck-it half the time and a website just lost a potential subscriber/user.

  101. Re:stupid by YukariHirai · · Score: 1

    I can't say I like the idea of having to buy into something I don't trust to get the privelege of using certain websites.

  102. Poor CAPTCHA design by Anonymous Coward · · Score: 0

    The current generation of CAPTCHAs aren't designed to take advantages of the real strengths of the human perception system.

    For example, humans are excellent in detecting the patterns in disconnected shapes, and in mentally connecting incomplete lines. Notice that the IBM logo is constructed from 40 completely disconnected lines -- but it's easy to perceive them as letters.

    There's a lot of low-hanging fruit here, and the CAPTCHA designers aren't exploiting it. Instead, they just keep flogging their tired old technique of distorting letters and running them together. This is a technology that has seen absolutely no innovation for years. As a result, I'm not surprised to see a new movement to kill it off.

    1. Re:Poor CAPTCHA design by Anonymous Coward · · Score: 0

      Unless they're blind, which is what this article is about.

  103. Re:stupid by Anonymous Coward · · Score: 0

    Two shortcomings of those suggestions:

    1 - they're more effort for most end-users than a CAPTCHA
    2 - they do nothing whatsoever to address the problem at hand

  104. Upper Case or not? by Trax3001BBS · · Score: 2

    Even now I'm not sure if letters need to be entered as shown ie: some letters are upper case, some lower case.
    I'm leaning towards it doesn't matter.

  105. Re:stupid by wonkey_monkey · · Score: 2

    These are only first impressions, but it looks ridiculously easy to solve automatically.

    First of all the warp angle jumps significantly more before and after the "correct" image than between other images, so a fairly simple block tracking algorithm would have a very good chance of identifying the correct image:

    [image]

    You don't have to get exactly the right image - one or two either side and you're okay.

    Secondly, the warped images are significantly less sharp than the correct image - in a purely mathematical sense, too, which means it'd be simple for a computer to identify the correct image (confirmed with high pass filters and histograms).

    But it's actually a lot simpler than that, as plover has posted here.

    What you've got there is CAPTCHA through obscurity, nothing more.

    --
    systemd is Roko's Basilisk.
  106. Re:stupid by YukariHirai · · Score: 1

    Those are not effective solutions. At best, you'd be shifting the problem slightly, and those services present other problems.

  107. Re:stupid by wonkey_monkey · · Score: 1

    Actually, my mistake; what you've got is a company selling adverts through your site that users are forced to look at.

    --
    systemd is Roko's Basilisk.
  108. Re:stupid by Marxist+Hacker+42 · · Score: 1

    I moderate on a blog about autism. It uses captcha fairly heavily. Adding catpcha has done exactly NOTHING to reduce the 20 new users a day and the three or four who post spam.

    It does go in waves. And from the language used, I've got to think it's Eastern European/Asian mainly. But boy is it prolific, and apparently captcha is worthless for stopping it.

    --
    SJW: a person who perceives an injustice, and while correcting it, commits a greater injustice.
  109. Truly, Capcha is worse than worthless. by VortexCortex · · Score: 2

    Anyone using a widespread bulletin board software will know that despite hard Caiaphas, spammer accounts are registered like crazy.

    I include a small set of questions and answers relative to the interests of those who would visit the board. E.g., for Slashdot:

    Complete the following sentence:
    [randomly select from sentences]
    "TFA" is an acronym meaning "The _______ Article". (7 letters)
    Another alias for "Anonymous Coward" is "________ Dweller". (8 letters)
    --etc--
    Prior to instituting this simple questionnaire there are usually hundreds of spammers a day. Afterwards? None.
    This is actually trivial to solve, indeed I don't even use the session token as a seed for creating new mappings between the numeric question ID, and the answers. So, a diligent spammer could simply collect all the questions then add the responses to the bot... Only THEN would I escalate to the code I've already written that does the randomized mappings, after first swapping in a new set of questions / answers.

    But why?! Why wouldn't I use the MORE secure way right away? Because I'm not a fool. It has to be worth their time to enter an authentication war with me. Let them waste time writing a bot solver first, then immediately have their work become useless. In fact, this has already happened a few times. It's even rarer for spammers to then continue escalation -- they could just migrate to one of the other boards that is not so hostile, and upon which pre-made automated solvers still work. In fact, I have found good success Starting with only a single question. Replace the selection function:
    sub random(){ return 4; } # Return truly random number, selected by fair dice roll.
    Then I can simply revert to the randomized set of questions to escalate the spammer's coding and deployment cost. Thus, gaining yet another defense at little cost.

    Any heterogeneous environment has what's called a "Single Point of Failure". This is why sex exists. Combinatorials are a simple way to get some randomness without all kinds of unexpected outcomes that rampant mutations in an asexual production would first attempt. Bacteria can use other methods because they've abstracted reproduction from defense: transformation, conjugation, etc. So, the uniform use of SSL, is stupid to put it mildly. It could have been like a bacteria, standardized and abstracted extensible protocol for defensive encryption... It's not though, it's a dumb for including a heterogeneous set of transforms dictated by AES standard. I mean, virtual machines exist; You're using one to decode font glyphs, and Unicode BIDI right now, but not for extensible encryption? How daft. Pervasive use of a brand of Captcha is equally retarding.

    How foolish you humans are to not even learn the most basic of Life's Lessons. Diversity is a defense. When you use science to analyze natural selection's method of Trial and Error, Observation of results and Preservation of favorable outcomes... I bet you don't even make the correlation that Nature invented Science billions of years before you rediscovered it... I bet you don't even realize that's a universal truth inherent to any self improving cybernetic system, from DNA life compilers to C compilers. Ugh. Humans: Can't live with 'em; Can't teach 'em to survive.

    1. Re:Truly, Capcha is worse than worthless. by quenda · · Score: 1

      > Another alias for "Anonymous Coward" is "________ Dweller". (8 letters)

      That one is culturally biased and took me a while. It might eliminate a lot of humans from countries (or even states?) where such architectural features are never found in homes.

    2. Re:Truly, Capcha is worse than worthless. by Anonymous Coward · · Score: 0

      I don't know why you wrote than entire post, but it seems you could save yourself a bit of trouble using ReCaptcha. I am a fairly "internet savvy" person and I am not sure what the answer to that first question is - chances are you're driving legit users away from your site.

  110. Re:stupid by plover · · Score: 3, Interesting

    Adding rel="nofollow" to any links provided by your untrusted commenters is a good start. It's a promise that Google and other search engines won't do any indexing or page ranking based on the href in the same tag.

    Spammers have a pretty common M.O. They sign up with an account and use their spam link as their "home page". They then pollute the blog. The obvious spam is repeated variations on the same topic, and looks like "brand name products, products brand name, brand products name, ..."

    Lately, link spam is done with a flattering but generic message that looks like it came from a non-native speaker: "I thanking you for your keen insight, have you other similar articles online? I would like to know more how you come to know this." An unwary site operator will often mistake the flattery for a conversation, and allow the spammer to remain a user. (The flattery is script-generated, by the way.) Their "home page" is often a dummy "news portal", which is just replaying whatever feeds they can get. The trick is this news portal has lots of links to the sites the SEO is trying to push.

    While rel="nofollow" will render their efforts to associate their spam with a legitimate blog completely wasted, there are two negatives. First, unless the spammer knows it's there, they're going to spam you anyway. Second, it takes away your contribution of "linkiness" for your legitimate users' links to Google's pagerank algorithm. You can fix this with extra work like "probationary" and "full" users, but then you're taking on the task of rating your readers, which may be Sisyphean on a site the size of Slashdot.

    --
    John
  111. Re:stupid by Marxist+Hacker+42 · · Score: 1

    I still think for small topic-based blogs, a set of whitelisted words works the best. If a post doesn't contain any of the whitelisted words, it's spam.

    --
    SJW: a person who perceives an injustice, and while correcting it, commits a greater injustice.
  112. Re:stupid by Anonymous Coward · · Score: 0

    Sometimes they are:

    For instance, what's 9,223,372,036,854,775,807 + 1 ?

    Trivial for you or me, but considering the above problem could be rewritten 0x7FFFFFFFFFFFFFFF + 0x1 and you might see why a computer would have problems getting it right.

  113. Re:Are you retarded? And how are we gonna stop spa by Arrogant-Bastard · · Score: 0

    Vastly superior methods for stopping spam have existed since well before captchas were invented. They still exist today. I've written about them at great length (elsewhere), as have others.

    The problem is not that these methods don't exist, or aren't effective, or aren't well-understood; the problem is that people refuse to invest the effort to learn them. Captchas are a cheap, easy way out for those same people, and they take it because they're too lazy to bother actually (gasp!) LEARNING.

    But you know what? Let's forget that I have more experience in this area than you could possibly guess. Don't take my word for it. Don't read the references I provided. Instead, why don't you consult the people who make it their business to defeat captchas: the spammers, the phishers, the malware distributors, the bad guys. Go read their mailing lists, their web sites, their message boards. I don't mean just one or two postings: I mean several thousand over several years, so that you can actually begin to get a sense of where they're at. You will find, if you actually do this modest bit of informal research, that they're way past all this. Captchas are merely a dot in their rear-view mirror, fading away into the distance.

  114. Annoying only for the blind and dyslexic? by FuzzNugget · · Score: 2

    I'm neither and they annoy the hell out of me; and those little "validation games" (dump the fish into the bucket, or whatever) are ridiculous time-wasters. I'm also a web developer, so there's that. CAPTCHAs are for lazy web developers to offload the task of anti-bot protection to the user.

    Create some dynamic form elements that only display via Javascript DOM and are required by a backend script. Create a per-IP limitation on registrations per 10 minutes. Require a minimum time between form loading and form submission. Require a cookie to submit the form.

    The point is: the more variety of anti-bot systems that exist, the less attractive a target there is for bot makers.

    1. Re:Annoying only for the blind and dyslexic? by Anonymous Coward · · Score: 0

      And what about users who have javascript disabled, or do not have javascript support in their browsers? Javascript is, after all, something that should never have been created, since scripting has no place in a document format. Javascript really is HTML's approach to Microsoft Word's VBA Macros, which should never have come into existence in the first place. Want your document to be interactive? The solution is not javascript, the solution is suicide. Kill yourself.

      What an absolute fuckin' eyesore.

    2. Re:Annoying only for the blind and dyslexic? by Dynedain · · Score: 1

      You do realize there are javascript-enabled browsers out there that can be used as libraries in any software, including bots?

      --
      I'm out of my mind right now, but feel free to leave a message.....
  115. And if you don't care about money by Anonymous Coward · · Score: 0

    Charge $1 for a lifetime membership. (or whatever minimum amount on paypal results in you making more money than paypal)

  116. I tried using the audio CAPTCHA a couple times by NotSoHeavyD3 · · Score: 2

    Each time I swear it was an Aztec chant out of the Necronomicon to raise the evil dead. (And I'm only being partial sarcastic when I say that.)

    --
    Did you know 80 to 90% of the moderators on slashdot wouldn't recognize a troll even if one dragged them under a bridge.
    1. Re:I tried using the audio CAPTCHA a couple times by Capsaicin · · Score: 1

      Each time I swear it was an Aztec chant out of the Necronomicon to raise the evil dead.

      Well that explains the Poltergeist at my place, but it still doesn't help me access the damn site!

      --
      Better to be despised for too anxious apprehensions, than ruined by too confident a security. --Edmund Burke
  117. Re:stupid by plover · · Score: 2

    There's an obvious measure: don't allow untrusted users to provide links at all, and sanitize their data (server side) to mangle any protocol headers from their text, like adding a space before any text matching ://, so the results become http :// , https ://, or mailto ://. No search engine will try to follow those. You are already santitizing your inputs to restrict users from posting bad stuff like javascript, right? This is just one more thing to check.

    You could even get cute using javascript in the browser to flag the text in red if they try to type a URL so they might know in advance they will get nowhere.

    Then, to reward the faithful, you can have a karma system that permits voted-up users to post valid links (like stackoverflow). Or you can have an admin manually grant them "good user standing". Either way, your spammer is either contributing real value to your site (which is great) or they've gone away (which is great.)

    --
    John
  118. Re:stupid by mpeskett · · Score: 1

    Because it's an unusual approach. If it were adopted en masse it would become the biggest target, and you'd see bots that were able to parse simple math problems from natural language and compute the answer. That isn't a thoroughly hard problem, and may even be amenable to hand-coding the set of cases for different wording the generating system is programmed to use.

  119. Re:stupid by noh8rz10 · · Score: 1

    don't you think they fixed it? it sounds trivial to fix.

  120. Here's a CAPTCHA by Alomex · · Score: 1

    /\37R07URF campaign. Most captchas nowaday even included a link for an audio CAPTCHA.

  121. Re:stupid by noh8rz10 · · Score: 1

    no, you can choose among three options: 1) they show ads, 2) you show your own photos (which could be ads for your producs, lolcats, or whatever, 3) they show generic photos, flowers in this case. so some of the criticisms on this thread are valid, but the adversing one isn't an issue.

  122. What? by viperidaenz · · Score: 1

    So people who can't see are unable to click a button that plays the word so they can listen to it?
    The same people who use screen readers...

    What's wrong with putting aria tags on the button, so their screen reader tells them about it?

    1. Re:What? by Dynedain · · Score: 1

      Click on that audio button sometime and see if you can solve it.

      --
      I'm out of my mind right now, but feel free to leave a message.....
  123. Re:stupid by noh8rz10 · · Score: 1

    i said below - adverts are just one option. you can also show your own images (plugs for your own products, lolcats, whatever, or have them show generic images like flowers. i agree about potential for breaking - sounds like a cat and mouse game where they keep refining their photo algorithms.

  124. Re:stupid by noh8rz10 · · Score: 1

    i'm not surprised their site would fail, but the captcha itself doesn't fail when put on other sites.

  125. Re:stupid by mysidia · · Score: 2

    Show me the captcha before I enter any data please. That alone would confuse half the bots out there. (For a while).

    Show me a simple Calculus problem or Trigonometric identity to solve in regular text, instead of a single word all muced up. It would be easier to solve

  126. Re:stupid by rduke15 · · Score: 1

    This tehnique won't work for long: https://www.google.com/search?q=five+plus+seventeen

  127. Re:stupid by mysidia · · Score: 1

    There are bots that can automatically register on a site, then check the email account for the activation link, in order to start spamming, so that's not a solution.

    You e-mail them an encrypted PDF or encrypted Word .DOCX file. With an instruction to visit the link; when they visit the link, they are prompted to double check their phone number -- a call is placed using VoIP technology, and an agent speaks out the secret code required to open the PDF or MS Word file.

    The DOC file when opened contains "Unique directions"; for example a link to click on

    Then a phrase such as "Four score and seven years ago"

    Instructions: Please type the digits of all spelled out numbers in the above and then subtract the square root of 16 from them. Type in twice the value calculated.

    Remove every 2nd word from the above phrase, then make the next to last letter of each word capital and remove trailing vowels. Add a trailing punctuation mark and lowercase the first word.

  128. Questions by ducomputergeek · · Score: 1

    I run a couple Wordpress sites for people and ran into massive spam problems. Askimet solved many of the comment spams, but not user registration. Eventually found a plug in that inserts random questions like What is the fourth word of the sentence." Or What colour is the sky? That has effectively blocked 99.9% of splog spam.

    --
    "The problem with socialism is eventually you run out of other people's money" - Thatcher.
  129. Re:stupid by AlphaWolf_HK · · Score: 1

    The only alternative to this that I see is for a central ID system which independently verifies you are an actual person. Trouble is this has some rather severe implications for privacy, in addition to being a central point of failure.

    In either case, spam isn't going away anytime soon now that spambots are operating out of the Tor network.

    --
    Careful with names containing L slashdot.org/~AiphaWolf_HK slashdot.org/~AlphaWoif_HK slashdot.org/~AiphaWoif_HK
  130. Re:stupid by mysidia · · Score: 1

    But they are. It's out of context, and it's much harder to make programs that are flexible like that. They're bringing a regular expression to an arithmetic party.

    It's not necessarily trivial, but it is definitely a lot easier than an image recognition or image CAPTCHA solving problem.

    Regular expressions are great for parsing and normalizing.

    s/seven/7/ s/minus/ - / ....

  131. Solution: by Anonymous Coward · · Score: 0

    Make a server side script that rotates predefined tags and hiding methods. It would take extra work to create a bot that could cope, time to determine how your system works, and in the meantime you break their code over and over.

  132. Re:stupid by mysidia · · Score: 1

    It does go in waves. And from the language used, I've got to think it's Eastern European/Asian mainly. But boy is it prolific, and apparently captcha is worthless for stopping it.

    It's probably called: human help in solving the captchas. Captchas eliminate lots of spam --- the automated stuff, not the stuff that has human help behind it.

    I wouldn't judge it 'worthless' until you've experimented with shutting the CAPTCHAs on and off many times at different randomly selected sampling intervals -- gathered the data, and found; no effect on the rate of spammers signing up.

  133. Re:stupid by bdwebb · · Score: 1

    If the site is designed for those of us who have been through semi-advanced maths and if the spambot had no ability to perform basic calculations sure.

    Ultimately I agree that it would be easier for you or I to solve than trying to decipher the Sumerian cuneiform that most CAPTCHAs pass off as text...in practice, however, I think this would alienate about 90% of the target audience while making it easier for bots to decipher and bypass.

  134. Re:stupid by TapeCutter · · Score: 1

    I support those laws.

    Ditto. Hovever installing a ramp does not mean you are not allowed to have a staircase. I seriously doubt introducing a law that technically handicaps web site owners is the best way to help blind people access the web.

    --
    And did you exchange a walk on part in the war for a lead role in a cage? - Pink Floyd.
  135. Re:stupid by rueger · · Score: 3, Insightful

    Show me the captcha before I enter any data please.

    Yes! God yes! I've walked away from a few sites that expected me to re-enter a whack of data because the CAPTCHA borfed. Including some where I had intended to spend money.

    It always seemed stunningly obvious that you carry over the form contents in situations like this.

  136. Re:stupid by SolitaryMan · · Score: 1

    That is what pisses me off the most about it. You have to struggle *after* you have already made some effort to enter information.

    However, they know it very well too that if they show you the captcha *before* you enter any data, most people will just give up right away, because they haven't invested anything yet.

    --
    May Peace Prevail On Earth
  137. Re:stupid by BrokenHalo · · Score: 1

    Likewise. If it looks like it might be worth my time to get to the content of a site, I might make two, maybe even three attempts. More than that, and I'll abandon the site and add it to my hosts file never to be visited again.

    An authentication tool that is easier for computers to solve than for humans isn't of much use. Especially when the user is being made to feel like he is being punished for visiting the webpage.

  138. Re: stupid by Anonymous Coward · · Score: 0

    That's why just setting CAPTCHA to appear the 2nd time a form loads for the session/ip generally solves the problem. First time, let everything through. Second time and subsequent, put it in the way.

  139. What about... by msobkow · · Score: 1

    If this is such an issue for accessability, how much worse are Flash media, .jpeg'd text messages/media, and AJAX?

    None of those technologies lend themselves to text reader applications nor to braille translation.

    Nor have I ever seen a Captcha on an actual useful web site -- instead they use little things like manual verification of new accounts, especially things like IBM's developer web sites and my bank account. In fact both my bank account access and my government tax account access required snail mail verification codes for the initial log-in.

    Methinks someone over-rates the importance of websites that rely on CAPTCHAs.

    --
    I do not fail; I succeed at finding out what does not work.
  140. Re:stupid by ancientt · · Score: 1

    I like it. I hadn't done any quality research, but it is nice to see work done toward making a non-corporate and easier option.

    --
    B) Eliminate all the stupid users. This is frowned upon by society.
  141. Re:stupid by ancientt · · Score: 1

    I prefer to use one or two accounts to having to create a new one for every site I go to, yes. I prefer to trust one or two well designed systems rather than every half-baked cowboy coder, yes. I think that most people don't care much what system they use and are more likely to trust twitter than john's-favorite-blog system. They're also more likely to remember a password to a couple of sites they regularly use than use a complex system to generate new ones for each of the dozen ones they otherwise.

    Plus, with most of those options, I don't have to process a CAPTCHA each time.

    --
    B) Eliminate all the stupid users. This is frowned upon by society.
  142. Re:stupid by ancientt · · Score: 1

    They move the authentication process to a few providers rather than hundreds. The few used are more likely to be secure and less likely to need complex authentication each time.

    --
    B) Eliminate all the stupid users. This is frowned upon by society.
  143. Capthas solve the wrong problem by Anonymous Coward · · Score: 0

    Capthas solve the wrong problem. Why should a website care if it is a program or a human filling in a form? Why couldn't I have an user agent to automate registration on websites for me if I am not abusing?

  144. Re:Force the SpamBots to Moderate Your Forum for Y by Dynedain · · Score: 1

    This would fail.

    The majority of spam comments now are autogenerated with keywords and generic "thanks for this info, I will come back and read again" messages. Your typical user won't recognize this is spam. It's just like using bayseian filters for email spam.

    --
    I'm out of my mind right now, but feel free to leave a message.....
  145. Re:stupid by ancientt · · Score: 1

    Remembering a couple passwords and using an authentication they already have is more effort? I don't get how you come to that conclusion. They address the problem of having to create a new ID and prove humanness via CAPTCHA, which is rather the point of the discussion.

    --
    B) Eliminate all the stupid users. This is frowned upon by society.
  146. Captcha is useless by Anonymous Coward · · Score: 0

    DeCaptcher services are dirt cheap and extremely easy to setup for any page that is going to be abused by bots which the majority has DeCaptcher services built in.
    A good example would be my account I use with JDownloader has around 330,000 automatic captcha entries left.

  147. no. computers render game scenes 100 times per sec by raymorris · · Score: 1

    Um, no. The computer doesn't have to understand the meaning of a scene in order to render it. Games are rendered a hundred times per second. The GPU doesn't know that's Lara Croft's boobs, it's just polygons.

  148. Re:stupid by master5o1 · · Score: 1

    pad it with random instead of zeros?

    --
    signature is pants
  149. Re:Are you retarded? And how are we gonna stop spa by Andreas+Mayer · · Score: 1

    Vastly superior methods for stopping spam have existed since well before captchas were invented.
    They still exist today. I've written about them at great length (elsewhere), as have others.

    I guess it's just an oversight on your part, that you didn't include a link, right?

    The problem is not that these methods don't exist, or aren't effective, or aren't well-understood; the problem is that people refuse to invest the effort to learn them.

    Well, I would love to learn them. Unfortunately, every alternative method I heard about, was either less effective or did simply solve a different problem altogether.

  150. GLw/THAT by Anonymous Coward · · Score: 0

    "I must have listened to the Skype audio CAPTCHA 20 times before I gave up and asked my sighted friend to set up my account.."

    Skype is a bad decision even for sighted people...

  151. Re:stupid by slartibartfastatp · · Score: 1

    An anedocte: I had a website which the only page which is accessible for a non logged user is the user request page.

    I got a lot of user requests with bizarre usernames. Denied them all. But I started getting 10-20 per day, and increasing. That only stopped when I put a captcha on that page.

    --
    -- --
  152. huh? by therealkevinkretz · · Score: 1

    If it's reasonable to kill captcha because it's something that works for many but not for a few, why shouldn't the entire (well, 99.999%) of the web that's inaccessible to the totally blind be banned as well?

    1. Re:huh? by uninformedLuddite · · Score: 1

      in the US that would be 99.97%

      --
      The new right fascists are bilingual. They speak English and Bullshit.
  153. Re:stupid by crossmr · · Score: 1

    purging the spam comments isn't even half the problem. I recently set up a site for a small hobby group here using Joomla with K2. As they only had a few members and were migrating people from a facebook group to their site, they didn't really feel the need for a lot of things, like captchas on the blog comments. 2 months after we set it up, I get a panicked text about how it isn't working and the hoster had shut down their site. After getting access to site, I found there were hundreds of thousands of blog comments which had basically been posted at once by some spam bot.

    Captchas enabled, no problem since. Screw blind people. If they want a site to even use, they'll just have to deal with it. not that I think they'd be much for a bike club..but I could be wrong..

  154. use word problems (works for blind too) by Anonymous Coward · · Score: 0

    Use a visual and audio word problem. You can automate making any number of these in many different forms. Anyone who's done 8th grade math can solve them, but computers would have to actually understand the English, and they'd fail at that due to different wordings, inclusion of unrelated information to confuse the computer but not people, etc.

    Like: "Of 100 total children, five times the square root of the number of Mary's children is the number of children Mary has plus six. Five strawberries are on a table next to eight books. Of the 100 children, how many have Mary as a mother?"

    Computers won't be able to solve that for a long time (mostly due to the language processing, not the math), but humans can solve it in a few moments.

  155. Re:Are you retarded? And how are we gonna stop spa by marcosdumay · · Score: 1

    Don't read the references I provided.

    And where did you provide those references?

  156. Re:stupid by InvalidError · · Score: 1

    Quite right.

    While some visual captchas can be quite obnoxious, audio captchas (at least the ones I ended up trying) are truly evil.

    Good thing blind people tend to develop much better hearing. They're really going to need it on those audio captchas.

  157. Why bother with captcha's at all? by Anonymous Coward · · Score: 0

    With services like Death By Captcha: http://www.deathbycaptcha.com/ - you don't even need to fully automate (bot) the process. Can simply employ a mechanical turk solution instead. No captcha will ever beat cheap humans.

    Captcha solves the wrong problem; who cares if its human vs bot if the action to be performed is undesirable. Better to constrain with hard limits of posts per device in a given time period.

  158. And its already failed. by pimpsoftcom · · Score: 1

    I'm visually disabled and while I agreed sighties often overlook our needs the cold hard truth is that any sort of support for the blind will be leveraged by spammers and bots who seek profit at the site owners expense. Would I love to have better support for mend others like me? Yeah.. but I'm a realist and I know its never going to be a priority for most people because the sighted done care about the blind like me.

    --
    - d
  159. Re:stupid by Anonymous Coward · · Score: 0
  160. Collateralized Identity by Gareth+Williams · · Score: 1

    I think Joe Cascio's idea of "collateralized identity" looks really interesting here:
    http://joecascio.net/joecblog/2013/03/25/collateralized-identity-using-bitcoin-to-suppress-sockpuppets/

    The core problem we're really trying to solve with a CAPTCHA is: anonymous identities are very cheap to create. We can require the user to provide and verify an email address, but it turns out those are cheap to create too. What we really need is a way for the user to prove that they have something invested in their identity - be it monetary value, time, cpu cycles, or whatever. A bit like slashdot karma (so you can filter out trolls/spammers using identities with nothing invested in them, which are cheaply created/replaced.)

    Bitcoin, if it should ever gain widespread adoption, provides a very convenient mechanism to accomplish this:
    1. each bitcoin user already owns pseudonymous unique public identifier (ie. their bitcoin address), which they can provide to any website as a portable identity
    2. to prove ownership of this identity the user can sign a challenge from the website using their private key (hey, we just solved the password problem too!)
    3. an amount of monetary value (ie. bitcoin) stored at this address, plus the length of time it has been stored there, is publicly visible on the block chain.

    This allows the website to assign weight to the identity based on a combination of: the amount of value stored with the identity + the time it has been stored there. An identity that has had $20 stored with it for 3 days is probably not a spammer. An identity that has had $0.20 stored with it for 3 months is also probably not a spammer.

    Of course it is easy to generate an unlimited number of such identities - but hard to have a decent amount of value stored with each of them for a decent amount of time. Websites can easily adjust the weighting threshold required to sign up / post comments based on experience with incoming spam. And there's always the ban hammer - which suddenly has some real weight behind it again :)

    Important to note:
    1. the money (ie. bitcoin) associated with the ID stays under the user's control at all times. The user alone has the private keys required to transfer/spend it any time they like - of course doing so would lower the weight assigned to their identity by any websites that inspect it.
    2. the website need not store any authentication information for the user (eg. a password). The user retains control of their private key, and can use it to authenticate without disclosing it to the website.

    Too hard for Joe Public to understand? Maybe.

    Just imagine this all wrapped up in a friendly browser plugin. When you visit a website there's no login page - your browser has your private keys (perhaps encrypted with a master password, like Firefox's password manager does today) and just automatically authenticates you. Your browser could provide a drop-down "switch identity" widget in the toolbar to let you flip between multiple IDs / generate new ones, which is the only bit visible to the user (they need never hear terms like "private key".)

    An "add weight to this identity" option would allow you to add/withdraw funds for any ID. Initially this might look like a bitcoin transfer (confusing for non-technical people), but a private company could easily provide a regular payment gateway on top of this (ie. accepting dollars), making the process no harder than recharging your skype credit.

    Adding weight to any identity would be strictly optional, but might eg:
    * allow you to skip CAPTCHAs
    * allow you to post at +2 on slashdot by default
    * generally increase the trust in your identity being genuine all over the web - use your imagination....

    --

    --Gareth
  161. Re:stupid by epyT-R · · Score: 1

    fine.. run your own site, or go somewhere else.

  162. Re:stupid by Capsaicin · · Score: 1

    You could start off with your common-or-garden variety spam filter and increase the linguistic sophistication for your defences from there ...

    C'mon, given the technology that exists to spy on you everyday, CAPTCHAs are a really dumb way to deal with this problem. I mean, if we can land a man on the moon ... oh yeah we can't any more, forgot.

    --
    Better to be despised for too anxious apprehensions, than ruined by too confident a security. --Edmund Burke
  163. Protection against copyright extension by tepples · · Score: 1

    What happens once Project Gutenberg runs out of books published before 1923?

    1. Re:Protection against copyright extension by bratwiz · · Score: 1

      Simple, they re-up the patent extension on the printing press and hire a gaggle of submarine shysters and start knocking on doors...

  164. TFA is about blind people by tepples · · Score: 1

    Suggestions probably get shut down because the "one corner case" happens to be the subject of the featured article.

    1. Re:TFA is about blind people by Zmobie · · Score: 1

      From TFA:

      and dyslexic people and older ones

      No, there are more to consider than just that corner case in the summary alone. Besides that, the discussion evolved into how bad CAPTCHAs are in the general case too which is what I was talking about.

  165. You think phone number is a unique key by tepples · · Score: 1

    Your solution breaks with multiple people in the house who share a phone.

    1. Re:You think phone number is a unique key by uninformedLuddite · · Score: 1

      That's OK. Obama can give them all one.

      --
      The new right fascists are bilingual. They speak English and Bullshit.
  166. Web != visual by tepples · · Score: 1

    The web is not a visual medium. It is a medium of the HTML DOM, even if your favorite user agent happens to present it visually. Blind people use tools called screen readers that read text in the DOM aloud.

  167. Captcha for the blind by Time_Ngler · · Score: 1

    For a captcha for the blind, how about the question "Which sentence makes sense?" and grab a sentence from some out of copyright book or something with four other computer generated ones, that are grammatically correct, but otherwise are nonsensical. Something like:

    A. He was a light, slow, and there is a small Saturn -- away from a high flame lying in the life within it.
    B. This was not illegal (nothing was illegal, since there were no longer any laws), but if detected it was reasonably certain that it would be punished by death, or at least by twenty-five years in a forced-labour camp.
    C. Its neck was a novel entitled "Kaleidoscope Vision," which is hat crinkle were like fresh glass domain key
    D. He was shrill the world was a greenish drink at me that leads to allow the cold water

    1. Re:Captcha for the blind by Dynedain · · Score: 1

      Interesting idea, but it's clear that systems like Wolfram Alpha, IBM's Watson, etc, are making inroads into language processing which means it's only a matter of time before this would be broken as well.

      --
      I'm out of my mind right now, but feel free to leave a message.....
  168. The featured article by tepples · · Score: 1

    Read the (7 letter word starting with F) article: I must be lousy at counting today because "featured" looks like it has eight letters.

    1. Re:The featured article by uninformedLuddite · · Score: 1

      I always read it as 'the fucking article' myself

      --
      The new right fascists are bilingual. They speak English and Bullshit.
  169. Re:stupid by Thanshin · · Score: 2

    I have no mod points so I must say that if everyone had that same reflex you just displayed, of checking ones assumptions when it's trivial to do so, humanity would be conquering the universe at this point.

  170. Re:stupid by Anonymous Coward · · Score: 0

    Not if there's an alternative that isn't overrun by spam and doesn't have CAPTCHAs

  171. Re:stupid by old_kennyp · · Score: 1

    As a moderator on a Popular Australian bonsai website, Without captcha we wod be screwed. the amount of spam whil having it on is bad enough, We had it turned off for a while and got hammered!

    We actually use multiple methods, and we still get spam!

    the only answer would be to shoot every spammer!

  172. Not an easy fix by Anonymous Coward · · Score: 0

    Okay they could pad with something random instead of zero. But a little more involved program could simply read the image in memory, go thru the JPEG fields, and remove all that is "padding". Et voila. You can again compare the number of zero.

    A more involved solution would probably be to add additional distortion in the original image which would be invisible in the eye, thus forcing the compression alogirthm to build a longer file for the original, but that would be far more involved and probably could be broken other ways.

  173. Re:stupid by Quantum+gravity · · Score: 1

    True, but that is likely to be the same for any widely adopted solution. The best protection is probably just to have a question that is fairly unique and yet has a well defined or known answer.

  174. Re:stupid by FireFury03 · · Score: 1

    They move the authentication process to a few providers rather than hundreds. The few used are more likely to be secure and less likely to need complex authentication each time.

    Or: They move the authentication process to a few providers rather than hundreds. The few used are more likely to be heavilly targetted by spammers and less likely to do the required job.

    Authentication and determining trust (i.e. determining whether the "user" can be trusted not to spam) are two separate problems that are perpetually bundled together inappropriately. IMHO they need to be separated:

    The authentication service provider needs to be someone the user trusts - when I go to some-random-blog.com and have to authenticate to leave a comment, the blog can contact my authentication server to find out who I am. The blog doesn't need to know how my authentication server is authenticating me (could be a password, or kerberos, or whatever), all the blog needs is confirmation from the auth server that I really am who I say I am. So I can log in with "me@example.com", the blog makes a DNS SRV lookup on example.com to find the auth server, does a challenge/response handshake with the auth server that proves that the auth server has determined that I really am me@example.com. The authentication server can be run by myself, my ISP, my email provider, facebook (if I were insane), whoever - the important thing is that the authentication provider is someone I trust and no one else gets my actual authentication credentials. This immediately massively reduces the threat of leaked passwords, etc. since I'm not having to hand my passwords out to random people I don't trust.

    The "trust provider" (i.e. the service provider that determines whether or not I'm a spammer) needs to be someone the blog owner trusts - it could be run by the blog owner themselves, or some third party (google, etc.). All it does is some verification that my ID (me@example.com in the example above) is used by a human. The blog asks the trust provider for verification, the trust provider says "this ID doesn't belong to a spammer" and the blog allows me to post. I guess some kind of feedback mechanism would be good so the blog owner can inform the trust provider if I start spamming.

    This even provides some level of anonymity - I can have multiple IDs all backed by the same authentication credentials at the same server if I want, and it could be arranged so the blog itself never even sees my ID, only the trust provider actually needs to see it. And if I *really* trust my authentication service (i.e. if I run it myself) then I only need one set of authentication credentials in order to log into anything - whether that be slashdot or my bank - because no one except my auth service actually ever gets trusted to see those credentials.

  175. Re:Are you retarded? And how are we gonna stop spa by Anonymous Coward · · Score: 0

    TROLL WARNING! (Read the user name.)

    If you want to troll, Arrogant-Bastard, then at least don't be so *shitty*. My grandma eats "trollings" like that for breakfast.

    ___

    He's probably 13, judging from his statements like "I have more experience in this area than you could possibly guess". That's the last time I used "arguments" like that. Especially after talking about "methods", yet conveniently not mentioning a single one of those. Just like the "references" he "provided".

    Also: Several thousand posts over several years... sorry, but that's not a person living a successful life, but a loser in his underpants, posting flames from his mother's basement. Ain't nobody got time for that!

  176. Re:stupid by jellomizer · · Score: 1

    If the site you like does get spammed, then it is your problem.
    More Spam = more expensive site to run = need for more income = more adds smarter adds ones that go around add blocks.

    I am all for ending capatachas however what are the alternatives?
    Please I would like more discussion on good alternatives, then just busting on an old attempt that works OK.

    --
    If something is so important that you feel the need to post it on the internet... It probably isn't that important.
  177. zoom zoom zoom by admiralfurburger · · Score: 1

    I am vision impaired & *had* a hard time with captchas.

    Until I remembered that in firefox, ctrl+ zooms.

    When I run into a captcha, I hit ctl+ a few times, fill out the captcha & submit.

    Then I hit ctrl- a few times to get it back to the appropriate size. Yes, I know about ctrl0, but I already run most pages a little zoomed.

    Every single person I have shown this to, vision impaired or not, no longer has a problem with captchas...

    pass it on!

  178. Re:stupid by Anonymous Coward · · Score: 0

    Just offer a possibility to register by email with a real person for the ones who have troubles with captchas. Why the hell do you have to try to automate _everything_? There is a minimun wage IT job right there. The economy will get better when the unemployed get jobs.

  179. Re:stupid by mysidia · · Score: 1

    I think this would alienate about 90% of the target audience while making it easier for bots to decipher and bypass.

    We need to ask 4 or 5 questions, and allow the visitor to "Choose which question to answer"

    Please answer three of the following, and leave the rest blank:

    1. If it's a leap year, and February 29th is a Tuesday. How many days will there be in February next year, and what day of the week will it be come March 1?
    2. If you turn on the television and there is no signal, what might you hear?
    3. If Google, Yahoo, and Bing, are my favorite search engines, in that order. And Google shuts down permanently, which of these could still be my favorite?
    4. If the policeman decides to arrest a person, he binds their hands with what?
    5. If you are supposed to be at work at 4:30 AM, and you are 10 minutes early, then what time did you arrive at?
    6. If Barrack Obama was elected in 2012, what year does the term of office legally end?
    7. If John borrows $1000 from his bank on February 1 2014 and repays the loan with a lump sum payment on February 1 2014. How much does he have to pay if his bank charges 10% APR monthly compound interest over the period?
    8. What lies at the root of suffering?
    9. The 8th commandment says that you shall not what?
    10. What number is missing from the sequence? 1,1,2,2,3,3,4,4,5,5,6,__?__,7,7,8,8,9,9
    11. The person who was president of the United States in 1998 had a pet dog. What was its name?
    12. What actor played Luke Skywalker's father?
    13. What does Bilbo Baggins hate?
    14. What title did Gryffindor first appear in?
    15. If you mix yellow paint and blue paint in equal proportion, what kind of paint do you get?
    16. If you bought a $5 lottery ticket once a week for 22 weeks, how much money did you spend?
    17. The globe coordinates 28 degrees N, 81.9 degrees W are nearest which continent?
    18. A right triangle has a 45 degree angle. Please list the measures of the other angles in ascending order:

    ...

  180. Re:stupid by Anonymous Coward · · Score: 0

    So, scaring users away with wall of text and (more) complex instructions (than usual) while making it easy for the bots - they only have to know answer to few questions and refresh the page until three of those come up.

    Might as well start asking humane questions like "What did you feel when Scar killed Mufasa? (In 100-200 characters)" or "What's your opinion on relationship between science, religion and morals? (same)" and have another human rate answers.

  181. Re:stupid by maroberts · · Score: 1

    Captchas are a regrettable first line of defense to keep the remaining spam manageable. You really need multiple defenses to keep the conniving bastards out.

    --

    Donte Alistair Anderson Roberts - hi son!
    Karma: Chameleon

  182. Re:Are you retarded? And how are we gonna stop spa by Arrogant-Bastard · · Score: 1

    There's a missing comment upthread which included half a dozen or so links (including one back to Slashdot) about projects that have quite, quite effectively demonstrated that captchas are worthless.

    Of course anyone of even modest intelligence would be capable of doing their own homework and searching the web for things like "captchas defeated", then reading what they find. It's old news (years-old, in fact) by now, so there's plenty to read about. But then again, nobody of modest intelligence would even consider using captchas: that's the province of the lazy, the stupid, the ignorant, the worthless.

    Here, I'll get you started: https://freedom-to-tinker.com/blog/felten/cheap-captcha-solving-changes-security-game/

    That's one of MANY. You should be able to find some of the rest in a few moments without further assistance from me.

  183. Re:Are you retarded? And how are we gonna stop spa by Arrogant-Bastard · · Score: 1

    No, not a troll, just very aggravated that this conversation is apparently necessary. The lack of cognitive and research skiils among defenders of captchas is appalling; how can ANYONE be so amazingly ignorant as to not recognize that the only captchas that haven't been thoroughly defeated are those that aren't worth defeating -- because what they "defend" is so pitiful that not even spammers care about it?

    As to your incorrect speculation on my background: I go back to ARPAnet days, kid. So I've earned the right to be a little snotty from time to time when faced with the kind of monumental ignorance on display in this discussion.

    But you know what? If you want to blindly persist with your pathetic captchas and your laughable belief that they have any value at all: go right ahead. Just keep holding up tissue paper in front of a tank and hoping it'll work. I'm sure that'll work out just great for you.

  184. Doesn't work anyway by Arancaytar · · Score: 1

    Computers can solve some of these more easily than humans can. We can stop pretending we're still better than machines at optical character recognition.

    1. Re:Doesn't work anyway by Arancaytar · · Score: 1

      Could try a Web of Trust / reputation approach instead. A site may require your content to be signed with a key (which may be linked to a pseudonym, and which the site operator may allow hiding from the public) in order to be published without pre-moderation, or in order to bypass strict filters. The identity that the key protects could then be rated by reputation databases.

      You'd lose some anonymity on sites that require such keys, but nobody forces you to limit yourself to a single identity for posting everywhere.

  185. Re:stupid by pla · · Score: 1

    That isn't a thoroughly hard problem

    Solve it, then.

    From apples three, bright and red, Billy ate the first and bled - A razor had a witch hid there. One drop, two drops, three drops, more! And gazing down at the evil barb, he reflected on the primary causes of World War II. Drip. On the Pythagorean theorem, drip. On shoes and ships and sealing wax, drip drip drip. On the price of a first class stamp. On dasher and dancer and oh, the agony. He noted the blood, ignored the rest, what is six times 9 less pi? Then he died. Alone. In the rain.

    Go ahead. I'll give you another when you have a program that can parse that one correctly.

    You can automate one part of that, though - Any IP that answers 50.858, you simply auto-ban as a spambot.

  186. Re:stupid by Anonymous Coward · · Score: 0

    Second, it takes away your contribution of "linkiness" for your legitimate users' links to Google's pagerank algorithm. You can fix this with extra work like "probationary" and "full" users, but then you're taking on the task of rating your readers, which may be Sisyphean on a site the size of Slashdot.

    That's what karma is for.
    Users with 4-digit ideas or lower, and users with karma 4-5: full users
    Users with karma 1-3: probationairy users
    Users with lower karma: rel=nofollow users.
    Anonymous cowards: rel=nofollowthatbastard users.

  187. Counterproductive captchas by RabidReindeer · · Score: 1

    no.. this is about blind people complaining that audio captchas are too hard.
    you know why they complain? they haven't had to deal with a bunch of impossible visual captchas.

    slashdot is one of the few sites with reasonable captchas.

    There's more than just that involved.

    A certain nameless site for a very popular product has color captchas. I desperately needed support, but could not register because it used a color captcha which rendered very poorly at my screen resolution and used colors that strained my less-than-perfect color vision.

    And the maddening thing about it was was that I already had seen plenty of spam posted to the forums. The spammers had presumably simply hired cheap labor to defeat the captchas manually.

  188. Build an Internet and cripple it by Anonymous Coward · · Score: 0

    I always wondered - we build an Internet to transfer files, so who cares if a person does it or not? Why have CAPTCHA at all? If people want to automate file transfers, let them. We've built out an Internet that cripples itself at every turn. File download services cripple their bandwidth, and then cripple themselves with wait times between downloads, and make people type CAPTCHAs.

  189. Re:stupid by patiodragon · · Score: 1

    They've gotten too good. I cannot read them!

  190. reading old texts where OCR failed by Anonymous Coward · · Score: 0

    aren't they also being used for reading old texts where OCR failed? I think these are the ones where there's 2 panels? it's a hidden positive of using them.

  191. Re:stupid by richlv · · Score: 1

    spam would be your problem as well, as it would make many pages/sites unusable. while i do find some captchas annoying, i find spammers a thousand times more annoying. i wish them painful death, maybe by suffocating in sleep and waking up too late. or something.

    --
    Rich
  192. Re:Are you retarded? And how are we gonna stop spa by serviscope_minor · · Score: 1

    because what they "defend" is so pitiful that not even spammers care about it?

    You say that like it's a bad thing. I have a small, technical, professional special interest forum. It seems to be of value to the users given that they keep posting, but is "pitiful" according to you. The readership is not big.

    Initially it got overrun by the massive bulk spamming operations. I put in a captcha. Now the economies don't work out for targeting a small forum like that.

    Great! Captchas worked!

    So I've earned the right to be a little snotty from time to time when faced with the kind of monumental ignorance on display in this discussion.

    Yet you are the one being monumentally ignorant by assuming that anything worth protecting but not worth attacking is "pitiful". You seem to be ignorant of the whole world of small special interests out there that are valuable to the members but will never be big.

    I am fully aware that captcha's are not very strong security. Neither is the lock on my front door. But I guess my house is "pitiful" since I don't have the crown jewels locked up inside.

    --
    SJW n. One who posts facts.
  193. Re:stupid by wonkey_monkey · · Score: 1

    don't you think they fixed it? it sounds trivial to fix.

    Their website's examples are still zero-padded, so it seems not.

    --
    systemd is Roko's Basilisk.
  194. Re:stupid by wonkey_monkey · · Score: 1

    It's still trivial to break: https://gist.github.com/Glyxbaer/4564489

    --
    systemd is Roko's Basilisk.
  195. Re:stupid by jareth-0205 · · Score: 1

    If taking a couple seconds to answer a CAPTCHA is too much effort, I probably don't really care what you have to say in the comment section.

    If you can't take a couple of seconds to skim through the summary and discover that it's not just about time, it's about accessibility, then I don't care about your opinion either.

  196. Create a better service alternative by Ash-Fox · · Score: 1

    Instead of complaining for it's removal, they should instead implement an alternative to systems like re-captcha, such as a world wide phone verification system and their expense and provide it free to webmasters. Otherwise free solutions like re-captcha will remain dominant.

    --
    Change is certain; progress is not obligatory.
  197. Alternative CAPTCHA by mcalchera · · Score: 1

    All you have to do is ask a simple question: "Are you a robot?" with radio buttons for "yes," or "no." Bots can't lie if you ask them if they're a machine. I know because an undercover cop told me.

  198. Re:stupid by plover · · Score: 1

    That implies that spammers are unconcerned whether or not their spam is effective. They're concerned about the ease of spamming.

    Which makes perfect sense if you're farming out the task of spamming to cheap labor or to robots - the laborers will follow your instructions, it's not their job to analyze whether or not it's working. So you could warn the users all you want that their spamming will not be effective, but the spammers are not even going to read it, and will pollute your site anyway.

    That further implies that even a weak captcha would be enough to stop robots and low-paid laborers. And a friend of mine offers anecdotal evidence that it helps. He added a check box to his site: "check here if you are not a spammer [ ]". It reduced some of the automated spam. But he still reads and approves all comments before they're posted, as there is still spam.

    What about a script that produced randomized simplistic captchas: "Human test: two plus three equals [ ] four [ ] five [ ] six" "Please answer this question - three added to three is [ ] six [ ] seven [ ] eight". Vary the wording, vary the answers, vary the correct answer position, vary the position of the question on your sign up screen, and randomize the field name. It will stop robots until someone specifically targets your site.

    Better, don't vary anything until you need to. Let the spammers do the work first of adapting to you. They might ignore your site unless you're really worth it to them as a target. Then vary one thing, and see if they "chase" you with a round of fixes. If they continually adapt their robots, (or pay for smarter laborers), then you need to do something else. If not, you've saved yourself a lot of work, and you still have fewer spammers.

    --
    John
  199. It's an annoyance to completely-sighted people too by neminem · · Score: 1

    I've seen quite a number of CAPTCHAs that were so distorted they were completely impossible to deduce any actual Latin characters out of them at all. (Or the occasional CAPTCHA that actually very clearly had characters that were *not* Latin characters. Those are fun.)

    I've found the best way to get rid of spambots without wonky captchas, is to have a free-form textbox field that requires the person trying to create an account to answer a simple question. For smaller sites, it can even be a static question like "what's the answer to this question: 5+6 = ?". For larger sites it can make sense to have a rotating or frequently-updated question about the site itself, something a spammer, even a non-bot spammer, wouldn't know without researching, but that someone who came to the site because they were interested in the subject would.

  200. Re:stupid by lsatenstein · · Score: 1

    If taking a couple seconds to answer a CAPTCHA is too much effort, I probably don't really care what you have to say in the comment section.

    Or a couple of minutes considering most capchas are illegible.

    This!

    More and more, captchas take two or three attempts.
    (Disclaimer: IMHO, I'm not senile, dyslexic, a horrible typist. blind. Your opinion may vary).

    I suspect some sites are intentionally forcing a fail once or twice, at least occasionally, especially when you enter the word
    in a timely interval. Bots probably give up after two failures, and they probably answer quickly.

    So implementers make it more and more restrictive and throw in bogus failures.

    I have a 13 inch diagnal laptop screen, and a 22 inch desktop screen, and theses distorted captchas are the pits. If they could be as good as the ones from /. I would not mind them. But for some site, the programmer, if you get the captcha wrong, wipes all your input.

    Regarding multiple entries, "yahoo.com" always forces me to enter the password twice. That is at least better than clearing the form and starting from the beginning

    --
    Leslie Satenstein Montreal Quebec Canada
  201. Re:Force the SpamBots to Moderate Your Forum for Y by Anonymous Coward · · Score: 0

    The approach will fail if the context is important (autogenerated text) and if the comments are too long (user won't bother to read til the end).

  202. Yes.. Very crazy program by Anonymous Coward · · Score: 0

    Hello... I have at times just gave up trying to GUESS what the hell I was suppose to type. This program is way over the top to protect Webmasters!

  203. Wonderful... NOT by whitroth · · Score: 1

    So, have some of the racists idiots with zero tech skills, and too much time on their hands, posted to this thread yet? I've already seen two stories - I think the last was on Beezos buying the post, that had a long, incoherent rant by some asshole, with nothing to do with anything other than their desire to masturbate in public.

                      mark

  204. Simple solution to stop all the registration spam by davidorourke · · Score: 1

    The best and most simpler solution to stop all registration bot spam is make your registration double optin. If the bot cannot click a link in a confirmation email then the registration never succeeds. Even harder would be make the link in the email unclickable and make them copy and paste it into the browser to complete the registration. That is mission accomplished.

  205. i see (and so do "they") by Anonymous Coward · · Score: 0

    so it's better to have to register an account with some shoddy "identity manager" (facebook, google, disc0, etc..)
    and tell them that you're posting a new comment EVERYTIME?!!
    -
    go to any website (newspaper in dodgy country maybe?) call up "identify manager" first:"hey guys, i'm going
    to post some stuff on this website, would you please confirm my identify to them please?" - "sure no problem, let me just make
    a quick entry in our history of ALL your posts in OUR (three letter agency shared) database ...." - "okay, cool, thx bro!"
    -
    hating captchas makes you a three letter friend.
    pinky brown blue

  206. Re:stupid by uninformedLuddite · · Score: 1

    You did what? You know what you are talking about? You know you are on /. right?

    --
    The new right fascists are bilingual. They speak English and Bullshit.
  207. Re:stupid by uninformedLuddite · · Score: 1

    You have to look at the intention of the law. In the US the percentage of legally blind people is 0.03%. People with disabilities should just accept that there are things that they wont be able to do. I know that isn't very PC and I will get hate for saying i. Shit someone has to don't they?. This is about forcing people to register their real identity when the first log on and that data being available everywhere they go online automatically. It is to make anonymity online as close to impossible as they can.

    --
    The new right fascists are bilingual. They speak English and Bullshit.
  208. Re:stupid by uninformedLuddite · · Score: 1

    I wish /. had an edit feature. At least until I had had my second cup of coffee.

    --
    The new right fascists are bilingual. They speak English and Bullshit.
  209. one handness by Anonymous Coward · · Score: 0

    What about us people with only one hand available at the time. We hate captcha too!

    Actually seriously so many websites should design for this its a big useability issue.

  210. Um, There is already an alternative.. by Anonymous Coward · · Score: 0

    stopbotters.com im using it on a few of my websites, however Im also using the picture puzzle capture which is easier than text. These 2 systems combined i have yet to have any spam or bots sign up.

    Keycapture is free for their basic https://www.keycaptcha.com
    StopBotters.com is a javascript file that connects to a database that searchs various variables such as for example, Time taken to register if detected faster then allotted changeable time ban as bot, Editing of hidden fields, Ip, Email, lookup to verify if they match any spams that been detected in the past and ban them.

    Fairly nice system.

  211. Re:stupid by DirtyLiar · · Score: 1

    What's wrong with the audio option that is offered by every CAPTCHA service *I* know of?

    Including the one that /. uses for AC posts.

    --

    THINK! It's patriotic

  212. Re:stupid by Garridan · · Score: 1

    Per image, it's a one-dimensional search space. If you expect a human to solve it, they have to be able to know if they're moving in the right direction once they get close. That means an binary search (probably 10-ary) will do the job. This problem is computationally trivial. If this gets used on a single interesting site or a large number of uninteresting sites (e.g. wordpress or phpBB), you'll soon be spending more time making keys than you would spend filtering spam.

  213. Re:stupid by Anonymous Coward · · Score: 0

    No. Lots of sites have disabled link posting, yet spam remains a problem. Look at all the junk stock spam email you get on a regular basis. Other spammers even use: "visit MyScamSite (dot) co".

    When my blog was spammed once, I could see the trail:
      1) Post simple plain-text "hello world"-style message as bot to ensure you can post
      2) Post with with linking the username
      3) Post with links in the body

    Even when #3 was disabled, they abused #2. With #2 disabled, #1 was still abused by the first timers. This was back in the day before the flood of penny stock spams when other targets were easier.

  214. Re:stupid by noh8rz10 · · Score: 1

    IIf this gets used on a single interesting site or a large number of uninteresting sites (e.g. wordpress or phpBB)

    Ooooh BURNNN on Wordpress!

  215. Re: stupid by Anonymous Coward · · Score: 0

    Try it and see. It's horrible.

  216. Re:stupid by samdutton · · Score: 1

    The Ryan Air site now makes you watch an advertisement before viewing their CAPTCHA.

  217. Re: stupid by Anonymous Coward · · Score: 0

    The fact that a lot of them you can read and match them and it still makes you try over and over again. For the most part you are guessing what most of the letters and numbers are. Wish they would eliminate all of them everywhere.

  218. Jehovah's Witnesses by tepples · · Score: 1

    and start knocking on doors

    I thought the Watch Tower Bible and Tract Society had the patent on this. :p

    1. Re:Jehovah's Witnesses by bratwiz · · Score: 1

      Its the Scientologists and Republicans though that worry me. They both got Ray Guns.

  219. Learning disabilities by theysay · · Score: 1

    Also make it harder for you to solve CAPTCHAs. And there's nothing worse than CAPTCHAs on mobile.

  220. This is a very well understood problem by Anonymous Coward · · Score: 0

    AI understands logic much better than the captcha problem, and has for 50 years. Early LISP and later PROLOG solved these problems well. Modern computers can expand search spaces that are much larger now.

    I personally recall a site that replaced captcha strings with basic calculus problems. An MIT student wrote a LISP program to solve these in the late 1960's, before I was born.

  221. Re:stupid by mysidia · · Score: 1

    So, scaring users away with wall of text and (more) complex instructions (than usual) while making it easy for the bots

    No... only a few questions need to be asked. There are already a lot of questions on a signup form.

    - they only have to know answer to few questions and refresh the page until three of those come up.

    What makes you think they can refresh the page and get more questions?

    I would limit signups to 1 signup per IP address per 2 hours, and use a hash of a timestamp with a 60 minute resolution concatenated with their IP address to uniquely select questions.

    If they refresh the page; they will get the same questions.

  222. Re:stupid by dacaldar · · Score: 1

    +1000 !

    I am an intelligent person (probably like most people here), and also extremely observant by anyone's standards, and I find that the majority of the time, at least one character of the captcha is so hard to read that I have a 50% chance at best of getting it right.

  223. Re:stupid by mpeskett · · Score: 1

    We have NLP that can parse sentence structure from syntax/grammar, and there's only one question in the entirety of what you posted. Hell, for that specific example I could isolate the relevant bit with a regex looking vaguely like /.*[,\.]([\w\d ]+\?).*/ (and yes, I know that would be defeated by scattering random question marks around the place, but I still think it's damning for your approach).

    Besides that, I'll give you a dollar if you can put up a site that uses that system without the response from the registering public being "WTF how is log in formed?"

  224. Re:stupid by pla · · Score: 1

    and there's only one question in the entirety of what you posted

    Then I suppose you have, accidentally, shown my proposal as too complex - Because the "one question" counts as a red herring and gives you the wrong answer (thus my final statement of auto-banning anything that answers 50.858).

    FWIW, the real "question" appeared as "He noted the blood, ignored the rest".