Slashdot Mirror


Fallout From the Fall of CAPTCHAs

An anonymous reader recommends Computerworld's look at the rise and fall of CAPTCHAs, and at some of the ways bad guys are leveraging broken CAPTCHAs to ply their evil trade. "CAPTCHA used to be an easy and useful way for Web administrators to authenticate users. Now it's an easy and useful way for malware authors and spammers to do their dirty work. By January 2008, Yahoo Mail's CAPTCHA had been cracked. Gmail was ripped open soon thereafter. Hotmail's top got popped in April. And then things got bad. There are now programs available online (no, we will not tell you where) that automate CAPTCHA attacks. You don't need to have any cracking skills. All you need is a desire to spread spam, make anonymous online attacks against your enemies, propagate malware or, in general, be an online jerk. And it's not just free e-mail sites that can be made to suffer..."

104 of 413 comments (clear)

  1. Cracaked CAPTHAs!!! oh no! by xpuppykickerx · · Score: 5, Interesting

    I hate the fact that a computer can view these things better than I can. Lately, a lot of the CAPTCHAs have become unreadable by human viewers.

    1. Re:Cracaked CAPTHAs!!! oh no! by Anders · · Score: 5, Insightful

      I hate the fact that a computer can view these things better than I can. Lately, a lot of the CAPTCHAs have become unreadable by human viewers.

      They don't view it better than you, they just do not get impatient from failing 4 out of 5 times.

    2. Re:Cracaked CAPTHAs!!! oh no! by nbert · · Score: 3, Insightful

      Makes one feel like an idiot if some site starts to require impossible Captchas. Rapidshare for example had one where you were supposed to only write the letters featuring a cat (other letters had a dog). I had to enable some zoom feature of my DE to get a closer look but still the dogs and cats looked like some screen-dirt to me. Never managed to solve this one properly.

      Looks like I'm not the only one not smart enough - they replaced this CAPTCHA with some "Happy Hour" mode, which didn't require any form.

    3. Re:Cracaked CAPTHAs!!! oh no! by xpuppykickerx · · Score: 2, Interesting

      It's come to a point where the messages are so jumbled, faded, etc etc that i'm avoiding sites that use them.

    4. Re:Cracaked CAPTHAs!!! oh no! by fm6 · · Score: 3, Interesting

      Or from failing 999 times out of 1,000. Computers have an infinite amount of patience. Security schemes that don't acknowledge that are doomed to failure.

    5. Re:Cracaked CAPTHAs!!! oh no! by Kismet · · Score: 2, Interesting

      If patience were something we could quantify reliably, I suspect that we would find computers to have none at all.

      The reason? Computers also have no boredom.

    6. Re:Cracaked CAPTHAs!!! oh no! by fm6 · · Score: 2, Insightful

      Boredom is something you get when you run out of patience. Computers never get bored because they never run out of patience!

  2. Anyone usinging specialised tests? by niceone · · Score: 5, Interesting

    Heh, at the end of the article they have a link to a site that requires you to solve a calculus problem to register (it gets easier if you reload the page a few times, down to simple arithmetic). I have a site that is only of interest to people who use verilog (a hardware design language) I've toyed with requiring a some digital logic problem to be solved, but the volume of spam signups it's big enough for me to be bothered yet...

    Of course this solution isn't going to work for gmail - which seems to be the preferred email provider for the spam signups I do get these days.

    1. Re:Anyone usinging specialised tests? by blueg3 · · Score: 2, Informative

      While that's a class of problem that's tricky (though not impossible) to address, giving you the choice of a few different animals it might be is insufficient. Even if there are 10 choices, random guessing will be right 10% of the time, and that's enough for spammers. Subjective answers (showing a picture of a dog and having someone type "dog") are tricky because not everyone will type "dog", and you don't want to reject humans.

      The current design fits the requirements well because the answer is distinctly objective (you're entering exactly the letters you see), but the number of possible answers is enormous, so learning the answers or hoping to guess well is unreasonable.

    2. Re:Anyone usinging specialised tests? by jandrese · · Score: 5, Insightful

      The problem is that to set up that CAPTCHA you have to have a person sift through a huge picture archive of cats and dogs and mark each one. However, that limits the size of your CAPTCHA dictionary to however many entries a person can parse in a reasonable amount of time. This means the bad guys can sit down a person (or two, or ten) and go through all of your images to seed a database with the correct answers for their bots.

      --

      I read the internet for the articles.
    3. Re:Anyone usinging specialised tests? by Lehk228 · · Score: 4, Insightful

      not really, unless the catalog is huge and you expect your legitimate users to be biologists. if there are even as many as 100 animals the script can just guess, and 1% of attempts get through. when thousands of bots are signing up simultaniously 1% is a whole lot of bots

      --
      Snowden and Manning are heroes.
    4. Re:Anyone usinging specialised tests? by jim.hansson · · Score: 3, Funny

      then you write a little program that will show nude pictures, if users identify pictures for you. do not underestimate the length some people will go to for seing mostly skin.

      --
      preview button, my computer does't have any preview button
    5. Re:Anyone usinging specialised tests? by AndGodSed · · Score: 3, Funny

      No.

      You see there is an ongoing war against the postmasters by the webmasters. I am a postmaster, and I get roughly 300ish spam mails per site.

      And the webmasters sit and chuckle. Bastards, they could make it stop!

      But they don't... animals...

    6. Re:Anyone usinging specialised tests? by stomv · · Score: 4, Interesting

      what is the opposite of up?
      what day is after friday?
      what does seven plus three equal?
      what letter of the alphabet comes before d?
      how many wheels does a bicycle have?
      what is the third word of this sentence?

      These are generally difficult for computers to solve, can be programed to have permutations, and since the quiz answer can be tied to the account, if a particular question or style is getting spammed frequently, it can be removed from the list of questions.

      It's an arms race, and this system won't work forever, but it's fairly easy to implement and fairly difficult to overcome.

    7. Re:Anyone usinging specialised tests? by suggsjc · · Score: 2, Insightful

      It's an arms race, and this system won't work forever, but it's fairly easy to implement and fairly difficult to overcome.

      Not really, its all about scale. That system wouldn't last more than just a few seconds if a full "attack" were performed by a large botnet. The number of permutations is relatively finite, therefore with a large number of computers trying to "solve" the problem, once the correct answers were "cracked" then they could be shared and eventually the bots either know all of the answers, or you removed *all* of the questions from the list. I'm not saying this is an ineffective system for small/medium sites, but it wouldn't cut it for really large sites.

      --
      When I have a kid, I want to put him in one of those strollers for twins and then run around the mall looking frantic.
    8. Re:Anyone usinging specialised tests? by Ortega-Starfire · · Score: 2, Funny

      Obviously the solution is to make porn free so that this is no longer an incentive. Obviously also this means that the government should subsidize it.

      --
      ---- Liquid was a patriot ----
    9. Re:Anyone usinging specialised tests? by Beardo+the+Bearded · · Score: 2, Funny

      down
      saturday
      ten
      e
      two
      the

      Now your captcha systems has been completely broken by my bots.

      Buy some Viagra! she screamed, as the thorny wisps of french looked upon dog. Finally, she embarked, with implacable wit.

      --

      ---
      ECHELON is a government program to find words like bomb, jihad, plutonium, assassinate, and anarchy.
    10. Re:Anyone usinging specialised tests? by prockcore · · Score: 2, Insightful

      The problem is that to set up that CAPTCHA you have to have a person sift through a huge picture archive of cats and dogs and mark each one.

      Or you can be smart and realize that sites like petfinder already have to sift through.

      http://research.microsoft.com/asirra/

      over 3 million photos in the dataset.

    11. Re:Anyone usinging specialised tests? by blueg3 · · Score: 2, Insightful

      That's better, but it still has only 720 unique solutions, which is still within brute-force range. Your image library would need to be vast, or paying someone a small amount to label all the images once is an effective attack.

      By comparison, a text CAPTCHA has something like 56 billion unique solutions for a 6-digit string.

    12. Re:Anyone usinging specialised tests? by MagdJTK · · Score: 3, Insightful

      Or you can be smart and realise that if you use a public site then the bots can use it too. ;-)

    13. Re:Anyone usinging specialised tests? by Phroggy · · Score: 2, Insightful

      A botnet with 10,000 zombies randomly guessing which of them might be kittens (without ever look at the pictures themselves) will breeze through that like it's not even there.

      --
      $x='S24;r)>63/* h@<5+oZ)32"5cz';$me='phroggy'x$];
      $x=~y+ -xz+\0-Tx+;print$_^chop$me for split'',$x;
    14. Re:Anyone usinging specialised tests? by Anonymous Coward · · Score: 5, Funny

      what is the third word of this sentence?

      No, its the first.

    15. Re:Anyone usinging specialised tests? by mstahl · · Score: 2, Interesting

      Add random (but light) noise to the images while they're being served and randomize their filenames. There will be no way for an automated system to identify if it's been served the same image twice because the filename and checksum of the image would have been different.

    16. Re:Anyone usinging specialised tests? by hobbit · · Score: 2, Funny

      Your "random but light noise" idea intrigues me, and I would like to subscribe to your newsletter. Have you also considered using alphanumeric symbols instead of pictures of cats and dogs?

      --
      "Wise men talk because they have something to say; fools, because they have to say something" - Plato
  3. Mix it up a bit? by Hektor_Troy · · Score: 4, Interesting

    Combine it with a mix of simple math and image recognition? I.e.

    "What colour hair does the (2+four)/3 girl from the left have?"

    Hell, skip the math part if that's too easy.

    --
    We do not live in the 21st century. We live in the 20 second century.
    1. Re:Mix it up a bit? by jandrese · · Score: 5, Insightful

      Computers are pretty good at math last time I checked. Asking for something that would require a full on AI to answer is good (the hair color part), but the problem is that it requires a human to seed the questions, which means they will be limited in number. If they're limited in number then the spammers will just go through and keep reloading the screen until they've seen all (or mostly all) of the answers and program their bot with the correct answers.

      CAPTCHAs need to be able to be generated algorithmically by a computer, but not answered by one, which is a surprisingly difficult problem. Anything that requires human intervention on the creation of each variation is doomed to fail because spammers have more free time than you do.

      --

      I read the internet for the articles.
    2. Re:Mix it up a bit? by jandrese · · Score: 5, Funny

      I can't wait until someone's daughter tries to make an account on Barbie's Horse Talk website and is presented with the following CAPTCHA:

      Prove that a 3-manifold space has the additional property that each loop in the space can be continuously tightened to a point then it is just a three-dimensional sphere.

      --

      I read the internet for the articles.
    3. Re:Mix it up a bit? by evilviper · · Score: 3, Insightful

      "What colour hair does the (2+four)/3 girl from the left have?"

      "On the internet, only CAPTCHAs know you're a dog." Because, of course, there aren't any color-blind people on the internet...

      First, hair color is a terrible test... You've got about a 24% chance of getting it right without looking...

      Putting together a set of images with full extensive descriptions such as that would be prohibitive, while numbers and letters can be pretty easily automatically generated.

      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    4. Re:Mix it up a bit? by QuantumRiff · · Score: 3, Funny

      You just eliminated one third of the US population from accessing your site..  Sad, isn't it.
      Now if you had said,
      What color of hair does the 3rd girl on the right have,
      A: green
      B: brown
      c: Blond
      D: I drive a ferrari, I don't care about hair color!
      you would only eliminate about one eighth

      --

      What are we going to do tonight Brain?
    5. Re:Mix it up a bit? by cmburns69 · · Score: 2, Informative

      Or there just needs to be a very large database of possibilities. Microsoft's Asirra is one of these with a finite number of items, but due to the nature and number of the items, a computer will have a difficult time breaking it.

      --
      Online Starcraft RPG? At
      Dietary fiber is like asynchronous IO-- Non-blocking!
    6. Re:Mix it up a bit? by Anonymous Coward · · Score: 2, Informative

      Prove that a 3-manifold space has the additional property that each loop in the space can be continuously tightened to a point then it is just a three-dimensional sphere.

      ummm... I like Stacie!

    7. Re:Mix it up a bit? by beta21 · · Score: 3, Funny

      I can't wait until someone's daughter tries to make an account on Barbie's Horse Talk website and is presented with the following CAPTCHA:

      Prove that a 3-manifold space has the additional property that each loop in the space can be continuously tightened to a point then it is just a three-dimensional sphere.

      So thats why Grigori Perelman decided to solve that CAPTCHA.

    8. Re:Mix it up a bit? by Von+Helmet · · Score: 2, Funny

      Image recognition fails on two counts - perception and natural language. One man's ginger is another's man's strawberry blonde, and if you've ever looked women's hair dye you'll know that they have about 50 billion words for "brown".

    9. Re:Mix it up a bit? by OldManAndTheC++ · · Score: 3, Funny

      And I can't wait until someone's daughter answers back:

      This can be shown by (...200 pages of brilliant mathematics ommitted...)

      Q.E.D.

      Now, SHOW ME THE F*CKING PONIES!!!!

      --
      Soylent Green is peoplicious!
  4. Automate CAPTCHA attacks? by DriedClexler · · Score: 2, Insightful

    Correct me if I'm wrong, but wouldn't something capable of "automating captcha attacks" be, um, a major advance in artificial cognition, and quite a wealth of scientific information, since that means it can solve an arbitrary captcha like a human can?

    --
    Information theory is life. The rest is just the KL divergence.
    1. Re:Automate CAPTCHA attacks? by Anonymous Coward · · Score: 2, Funny

      I'm wrong

      Fixed.

  5. Captchas are only good for protecting cheap stuff. by nweaver · · Score: 5, Insightful

    CAPTCHAs are only able to protect things worth $.0025, no matter how good they are. Simply because at about that price, you can pay humans to solve them for you.

    Thus for preventing mail spam, it can work. But to prevent, say, bots from harvesting Ticketmaster, they will always fail, no matter how good they are.

    --
    Test your net with Netalyzr
  6. The problem isnt the CAPTCHA itself... by ragethehotey · · Score: 2, Interesting

    But rather an over-reliance on turnkey solutions to the problem. The overwhelming majority of places that use them all use the same format (hard to read words) which in turn creates an incentive for someone to break it as it will be easily applied to other CAPTCHAs. The solution is for there to be a wide variety of them that come up at any given time of the "what number is on the picture of the girl in the blue shirt" one day, but "pick the picture of the elephant" a week later. I predict that a company like google will step up to implement a turnkey system like this for adwords users and the like in the near future.

  7. Depressing by MarkPNeyer · · Score: 2, Insightful

    Does anyone else find it as depressing as I do that such obviously intelligent, motivated individuals can't find a more productive use of their talents?

    --

    My blog
    1. Re:Depressing by cowscows · · Score: 3, Interesting

      It's depressing to me that things like viagra spam are still profitable enough to make spamming them financially useful. Sure, the way the economics of it work out you only need a really low response rate to break even, but hasn't everyone already gotten enough of those emails? I'd imagine that whatever market there is for sketch viagra distributors would be saturated by now.

      At least with phishing spam I get to see new scams on a regular basis (some quite cleverly disgused too). But some of the more vanilla spam just seems pointless.

      --

      One time I threw a brick at a duck.

    2. Re:Depressing by Beardo+the+Bearded · · Score: 2, Insightful

      That's what I don't understand. If I wanted to take Viagra for some reason, I could just get a sample from my doctor.

      Why would I buy something from a random stranger online?

      Wait a minute. Maybe it's not the actual spam itself that's profitable. There's an illusion that it is, so it's the selling of spam that's profitable.

      In other words, you don't get paid for spamming Viagra, you get paid for selling the computer time to the people who think they'll get rich spamming Viagra.

      Maybe.

      --

      ---
      ECHELON is a government program to find words like bomb, jihad, plutonium, assassinate, and anarchy.
    3. Re:Depressing by kisielk · · Score: 2, Insightful

      Because if they actually send the spam, then the people selling the Viagra might get some hits. And even if they don't make a profit, the fact that they get hits may entice them to try again, providing a potentially larger source of revenue for the people sending the spam.

  8. Still useful by truthsearch · · Score: 4, Insightful

    CAPTCHA is still useful for small to medium sites that aren't specifically targeted. Your average blog, for example, is only hit by random bots that try to get quick and easy posts. Only the largest sites like GMail need to find something better today.

    For example, I use reCAPTCHA on DocForge to block the standard wiki spam bots. Since my site's not large enough to be under heavy attack very little gets through. Someday CAPTCHA may be so easy to break that everyone's at risk, but not today.

    1. Re:Still useful by truthsearch · · Score: 2, Insightful

      Well, you can check my site's recent changes to see nothing gets through that contains external links, which are the only anonymous submissions protected with CAPTCHA.

      Maybe your site's running some very common software. I have a Drupal site for example, that sometimes hit by bots that are obviously specifically written to attack Drupal sites. Or maybe your CAPTCHA implementations have already been broken, or aren't (pseudo-)random enough.

  9. The best part is.. by QuantumG · · Score: 4, Interesting

    Spammers are cracking some of the hardest problems of AI research.

    How can they do that, and yet all the great academic minds can't? Two things:

    * funding
    * a willingness to use "anything that works"

    What's really scary is that, in the end, spamming may turn out to be an agent of good.

    --
    How we know is more important than what we know.
    1. Re:The best part is.. by aeoo · · Score: 2, Insightful

      "How can they do that, and yet all the great academic minds can't?"

      Simple.

      First:

      Academics often fall pray to dogmatism and group think. Years of bureaucracy addles their minds.

      Second:

      The thing is that academics are not smarter than average. Academics are simply average people that work in research. They tend to know more within their fields not because they are inherently smarter, but because they are more motivated. And guess what happens with spammers and motivation? That's right! They are highly motivated and there is no bureaucracy and dogma to blind their way of thinking. They just need anything that works and they don't assume anything based on "prior research". Prior research is both a blessing and an iron ball with a chain. It's legacy and it's baggage. You're standing on the heads of the giants or on a pile of rotting corpses. You take your pick.

      Learning is a good thing, but academicians, or the so-called "professional" learners should really be criticized more often than they are.

  10. A dumb question: by AndGodSed · · Score: 4, Interesting

    Howcome /. is so spam free?

    Do the hackers just not care about us,
    or:
    is this like one of those "safe zones" where geeks and hackers can hang out as long as nobody asks or tells? (looks at guy to his left..."say is that a CAPTCHA in your pocket or are you just excited to be here...")

    1. Re:A dumb question: by EkriirkE · · Score: 5, Informative

      a combo if requiring an account, and having to wait at least 30 seconds before writing a reply, plus moderation. However, the firehose is littered with spam ads...

      --
      from 09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0
      to 45 2F 6E 40 3C DF 10 71 4E 41 DF AA 25 7D 31 3F
    2. Re:A dumb question: by p0tat03 · · Score: 3, Interesting

      Because it's difficult to get spam accounts *and* have good karma. Spam posts get modded to oblivion nice and quick :)

    3. Re:A dumb question: by Kingrames · · Score: 5, Funny

      Howcome /. is so spam free?

      You must be new here.

      and blind.

      --
      If you can read this, I forgot to post anonymously.
    4. Re:A dumb question: by Anonymous Coward · · Score: 2, Informative

      NOW V1AG-RA 100'S 4U click here (*) !

  11. And they share better. by khasim · · Score: 2, Interesting

    Put 1,000 computers on the problem and allow them to share information from their successes ... and you've cracked a CAPTCHA implementation.

    And there are hundreds of thousands of zombies out there.

    1. Re:And they share better. by statusbar · · Score: 5, Interesting

      The best way I've seen that captcha's got broken are by "free porn sites". The web site is what is cracking another captcha. When it gets a captcha to solve, it passes it to one if it's "porn viewers" - "please type the word that this captcha says in order to prove you are old enough to view the porn". Then the porn is displayed and the bot running on the website has a potential solution made by a human to do it's botting with.

      This method will suffice to crack ANY CAPTCHA!

      --jeffk++

      --
      ipv6 is my vpn
    2. Re:And they share better. by encoderer · · Score: 5, Interesting

      Absolutely correct.

      I run a mid-sized web development shop. A few years ago we were doing mostly retail sites. Vanilla and boring but we worked it down to a science and had some really great "modules" that made these sites super profitable for us. Of course, everything has its seedy side and with retail it was SEO.

      Everybody wanted it. About 80% of our customers were of the "Do whatever, just ideminfy me" stripe. (And these are established companies paying high 5-figures for these sites). We drew our own demarcation about what we would and wouldn't do. (Excessive Internal-link structure is OK, zombie sites are not).

      Now most our work is social networking.

      We, too, followed the "rise" of CAPTCHA and we've been happy with our results. We always used a custom CAP for each site, and we tried to keep them relatively readable, being of the belief that making it too hard will only keep out Humans: If somebody wants to crack it, they will.

      We still use them regularly. I noticed that about a year ago we actually had people begin to request them specifically. (Isn't that what Buffett said about the home mortgage mess? When the regular joe's started flipping houses, he knew it was over?)

      Anyhoo, I think the real fault in CAP's is that they worked too well. They became too big of a target. Now, we try to mix and match a number of different techniques to identify humans.

      Solutions range from dirt-simple: An input box named, say, "City" that has a label that reads "13 plus 8 equals:" or "What is the 3rd word on this page?"

      To the more complex "what is the color of the front-door in this picture?"

      We have a simple library we use for these things that pulls the questions (and, if applicable, the pics) from a Database of about 25,000 different turing tests.

      The thing is, none of them are too complex. Any mediocre programmer could write an application to crack it. But your bot will probably never see that same exact question again, so it becomes irrelevant.

      And, to tie it in to the parent, we chose this technique precicely because of what we learned from CAPs. Before there were software hacks, there was the "porn hack" and the "sweatshop labor hack."

      In this case, when a bot the site, it's fairly difficult for it to even detect which item is the turing test. We auto-generate the location and even the name of the form field so it's always a bit different.

    3. Re:And they share better. by Ploum · · Score: 2, Interesting

      I've build my own "invisible" captcha mechanism : http://ploum.frimouvy.org/?150-the-invisible-captcha-mechanism-icm-against-form-spam And in 2 years, it was so efficient that I almost completely forgot the existence of spam on my blog. And nobody ever complained about a false positive. The only drawback I see is that if you write a script to attack me now, it could work well and spam me for one day before my captcha block it.

  12. Suggested New CAPTCHA method. by gurps_npc · · Score: 2, Interesting

    This CAPTCHA has text from six emails. Five are randomly selected from those sent by people that have opened an email account in the past month. One is from an email account that is a honeypot. "Please select all emails that that are spam." Note, the obvious secondary benefit is that it is used as a spam detector. Then of course there is the simple rule: "Our free email accounts can not be used to send more than 20 emails per day. If you need more, please sign up for our deluxe account, that charges you $1 per year. of service"

    --
    excitingthingstodo.blogspot.com
  13. fall of open email by drDugan · · Score: 4, Insightful

    it is no wonder that the "under 25" crowd now says "myspace me" or "facebook me" and no longer use email. why would they?

    in a globally connected world with several billion possible users - open email simply won't work much longer.

    when we need are permission based systems - ones in which people need permission before they can contact another person. it would eliminate spam entirely, by integrating whitelists into mail clients. because no one has built a system like this that leverages and extends existing email servers - private organizations leveraging social connections have moved in to fill the gap. sadly, because facebook messages and myspace messages are not built on an open standard - you have to go through those companies to contact people.

    1. Re:fall of open email by robogun · · Score: 2, Insightful

      I think they've gone there because a social network provides much more than just email communication - the networks monitor your friends for you. Also they include the profile posturing that AOL profiles were so good at in the 90s. But it will suck for them when Myspace and any other proprietary setup fails, or is purchased by evil(tm) organizations, or when then evolve past usability (suck as Hotmail, AOL, ebay etc) and believe me they never stop tinkering because they have to make a profit. Remember the AOL outages and dialup access issues, people acted as if the whole Internet was down when in reality they couldn't connect to some company.

      Open is stil the best way.

    2. Re:fall of open email by 91degrees · · Score: 2, Interesting

      There's spam on myspace. I get people friending my virtually empty page from time to time. Myspace deletes them pretty quickly but I presume they just have a front page with a load of spam on it.

    3. Re:fall of open email by TheLostSamurai · · Score: 5, Funny

      it is no wonder that the "under 25" crowd now says "myspace me" or "facebook me" and no longer use email. why would they?

      Whatever happened to giving someone your phone number and actually talking to them. I asked a girl for her number the other night and she gave me her myspace address. Thanks, but no thanks. At least make the effort and give me a fake phone number if you don't ever really want to talk to me again.

      --
      I am Jack's complete lack of surprise.
    4. Re:fall of open email by Phroggy · · Score: 2, Insightful

      it is no wonder that the "under 25" crowd now says "myspace me" or "facebook me" and no longer use email. why would they?

      You're not wrong, but there's also another reason:

      The vast majority of non-technical people use web-based e-mail services such as Yahoo, Hotmail, GMail, etc. Personally I hate webmail (and I suspect most other Slashdotters do too), but 1) it's ISP-independent, so you don't lose your e-mail address if you change ISPs (which will probably happen if you move, even if there's a monopoly and you only have one choice for broadband); 2) it's computer-independent, so it's easy to check your mail at a friend's house and you don't lose anything if your computer dies and you have to buy a new one; 3) no configuration is required, you just enter your username and password and you've got your mail.

      So if that's what e-mail is to you - if you've never used pine or mutt or Thunderbird or Outlook Express or Eudora or Windows Live Mail or Apple Mail or Microsoft Outlook (except at work where the IT department set it up and you have absolutely no idea how to configure it yourself), then what's the difference between that and Facebook or Myspace? What difference does it make whether you log into Yahoo Mail's web site to check your messages, or log into Facebook's web site to check your messages? One of them gets V1AG*RA spam, the other one just gets those annoying little "so-and-so has just turned you into a zombie!" messages from everyone you know.

      And no, whitelists aren't the answer. If someone I don't know isn't on my whitelist, how can they get on my whitelist so they can contact me? If someone I do know isn't on my whitelist, they have to remember to tell me their e-mail address, and I have to remember to add it, before they can e-mail me. It's user-unfriendly. Social networking sites can do it because friend requests are controlled; e-mail has no such mechanism.

      --
      $x='S24;r)>63/* h@<5+oZ)32"5cz';$me='phroggy'x$];
      $x=~y+ -xz+\0-Tx+;print$_^chop$me for split'',$x;
    5. Re:fall of open email by QuoteMstr · · Score: 2, Insightful

      Excellent analysis. I wish more people were able to step into a non-geek's shoes and look at the world.

      When it comes down it, most people don't care about free software ideals, open protocols, or avoiding monoculture. They just want to get through their boring jobs, come home, be entertained, and try to get laid.

      Anything that makes these things easier or better is going to become popular with the masses. Anything that doesn't is going to remain confined to a core of people who've been able to see the world differently. Ultimately, we only make progress when we make the right thing the easy thing.

    6. Re:fall of open email by fermion · · Score: 2, Insightful
      I am always surprised at how computer illeterate the general population is. There are a large number of people over 35 that cannot use email. There are a huge number of people under 25 that believe the internet is IE, and the only place they can get to is facebook and yahoo. I have seen kids sit down a computer, type in facebook, get an error, type in yahoo, get an error, and just quit. I have had any number of kids tell me they need to check thier email and go to facebook.

      It is not a failure of open email any more that it is a failure of the telephone system. it is the culture that a group of people grow up in. Some people are in the IM culture. Some are in the texting culture. Others are in the face book culture.

      Facebook has somehow made it ok to use a computer. Functionally illiterate computer people have facebook accounts. It is simple. No configuring th STMP server. No messing with google or yahoo(yahoo is for free music only). Just set up a facebook and everything is there.

      I think we have to realize that the majority of the world really doesn't want to know half the computer application trivia that we do. It seems to me that Facebook has value because, at some point, these kids are going to become serious consumers, and they are not going to know anything else but facebook.

      --
      "She's a scientist and a lesbian. She's not going to let it slide." Orphan Black
  14. Just use by linhares · · Score: 5, Insightful

    BONGARD PROBLEMS. No machine can crack them in at least 10 years time. And when one does, baby, we'll have genuine AI.

    1. Re:Just use by BitHive · · Score: 4, Insightful

      Can you generate them algorithmically?

    2. Re:Just use by blueg3 · · Score: 2, Insightful

      It seems you'd have to provide a list of possible ways in which the two sets of images are different. Any solution where random-guessing has a non-negligible solution rate isn't a solution for spam. Anything vaguely multiple-choice fails. The CAPTCHA scheme, on the other hand, has an enormous solution space.

    3. Re:Just use by fm6 · · Score: 2, Insightful

      Ten years? Where do you get that figure?

      And I don't see how this level of pattern recognition makes an AI "genuine". Software that can consistently tell you from context when "flies" is a noun or a verb would be more to the point.

    4. Re:Just use by linhares · · Score: 2, Interesting

      Where do I get the 10 year figure? easy... Harry Foundalis, a former Ph.D. student under Douglas Hofstadter, spent 11 years on his thesis. It's a profoundly brilliant piece of work. However, it can only solve 15 problems, out of hundreds and hundreds tried. BPs require bottom-up, data-driven, perception processing, and top-down, hypothesis-driven, conceptual processing, both intermingled, as argued in the AI paper. In other words, you have to look and create concepts on-the-fly about what's going on. You can't take objects for granted. BP91, for example, has different, incompatible interpretations of boxes. That is why we need flexibility way beyond what's available today.

    5. Re:Just use by linhares · · Score: 2, Informative
      Sorry, but I actually was involved in the discussions and development of Phaeaco, Harry's system. His system has thousands and thousands of lines of c++, took 11 years, and solves 15 problems, out of hundreds, as I pointed out.

      For all of naive assessment that it's a piece of cake, the challenge is daunting.

  15. turing test by Anonymous Coward · · Score: 4, Funny

    The first thing to actually pass the Turing test will probably be a spam-bot. Isn't that disgusting?

  16. But they're not, really by XanC · · Score: 2, Informative

    Much of this is finding a way to brute-force the methods used on particular sites, overwhelming randomness, etc. It's not really a computer reading any difficult text.

  17. Re:I wonder.. by Illbay · · Score: 2, Funny

    Nyet, but haf you conzidered ze amazing affordability uff zer timezhare at Lake Baikal? Operatorz iz schtanding by!

    --
    Any technology distinguishable from magic is insufficiently advanced.
  18. The Irony by techsoldaten · · Score: 4, Funny

    The irony about this is that a CAPTCHA is a Turing test, a form of authentication designed to prove that a human is making the request. Given that some CAPTCHAs are rapidly becoming too hard for people to read, the outcomes of the tests are reversed - humans cannot win the test, only computers.

    I have CAPTCHAs on my blog, but only deny posters who actually fill them in. Goes a long way to deterring spammers.

    M

    1. Re:The Irony by Telecommando · · Score: 4, Interesting

      Interesting.

      A few months ago I tried to post on a blog (sorry, I forget which one), entered the CAPTCHA and got a message that I was a suspected bot and my IP address was banned from posting for 48 hours.

      I went back and carefully read the terms of use (just above the posting window) and buried in the middle of the terms was the phrase, "Do not enter the captcha, instead enter the first three letters of the fifteenth word in the second paragraph followed by the third word after the eighth word in the first paragraph in all capital letters."

      A neat idea, but I suppose it won't be long before that one is cracked as well.

      --
      Beta sux! Join the Slashcott! http://hardware.slashdot.org/comments.pl?sid=4760465&cid=46173047
  19. On sites like gMail.. by bill_kress · · Score: 4, Insightful

    On gMail some simple rules should suffice. Don't allow a brand-new account to send out more than a few (20?) emails a day. Make sure that most of the email varies. Make sure the account gets and reads email as well as sends it, and that the email is accessed.

    The trick is, you keep rotating these measures and don't tell anyone just what they are. You don't automatically disable anyone who breaks the rules, you just hold on to any large number of similar messages until a human reviews them--possibly through some mechanism similar to the "picture matching game" where multiple people identify a message as spam.

    If it's determined to be spam, never tell them you caught on, just stop email from that account from being sent, silently. Log the ip addresses and use them to help you identify other accounts from the same computer if possible.

    You could also use the ip addresses to notify people that they are a spambot next time that IP address is used to look up something on any google service.

    Wow, that's a broad action with a lot of chances for failure, but I bet it could be refined enough to work--and worst case failure isn't bad at all--just one time when you go to search google you get a warning page back instead of your search results.

    Really this just takes some dedicated effort and creative thinking by a strong, creative engineer with some power within google (I know there are quite a few of those)

  20. Google Captcha was NOT broken by Britz · · Score: 2, Insightful

    Maybe the poster should've RTFA. But this is Slashdot after all. Nobody reads the articles.
    http://it.slashdot.org/comments.pl?sid=467856&cid=22568696

  21. Actually, they are more potent then that by explodingspleen · · Score: 2, Informative

    You may be able to pay humans to solve them for you, but you can't pay humans to solve them for you at the same quantity. Human beings are slow and require extensive resources.

    It makes a big difference when you're talking about creating a crime syndicate with thousands of employees vs. one lonely script kiddie. The former solution doesn't scale very well, and has a much higher barrier to entry. Even if you don't stop spam you are certainly cutting back on the quantity.

    If they can break the captcha, that's a bit less helpful, because whoever did it can sell the solution. However, it's still better than if setting up an automated agent for spamming your site is nothing more than a scant few hours of work to anyone who can program. And the quicker you can change your captcha the less profitable/useful it becomes to crack it.

    It's not about being utterly victorious. That would involve tracking down spammers and hiring hitmen to take them out. What it is about is harms mitigation, and captchas will still do that even after being broken.

  22. Re:Bound to happen by Dekortage · · Score: 2, Interesting

    I dunno. I recently installed reCaptcha on a site that received dozens of spam messages through its online forms, and they all instantly stopped. None of them have returned. It's a low-traffic site, but still... made me think reCaptcha was doing a decent job.

    --
    $nice = $webHosting + $domainNames + $sslCerts
  23. Misleading phrasing by merreborn · · Score: 4, Insightful

    CAPTCHA used to be an easy and useful way for Web administrators to authenticate users. Now it's an easy and useful way for malware authors and spammers to do their dirty work

    This is misleadingly implies that CAPTCHA somehow enables spammers. On the contrary, broken CAPTCHA does not enable spammers to do anything they couldn't already do -- we're just back where we were before CAPTCHA.

    And to be fair, CAPTCHA is still reducing the rate at which attackers are able to create accounts, keeping some smaller, less sophisticated players out of the game entirely, and protecting lower-value targets (e.g., most small-time bloggers with comment spam problems still see a drastic improvement when they set up CAPTCHA)

    If everyone stopped using CAPTCHA, the spam problem would get noticeably worse.

  24. CAPTCHA != Turing by oljanx · · Score: 3, Insightful

    In a Turing test, obviously, a human does the verification. Unless you have an army of extremely low-wage laborers doing the verification, or a machine capable of passing a real Turing test, the CAPTCHA will *never* work. The only solution for now, I think, would be to force multiple layers of authentication on users. ie, you can have your craigslist account, but you're gonna need to pay 2.95 S&H and wait 5-7 days to get your key chain dongle before you can log in. Obviously, the average user is not going to be up for that. So you're stuck with spam. It sucks, but there's no way around it.

  25. Make Them Write by linuxpyro · · Score: 4, Funny

    I've toyed with the idea of making users write a 500 word essay on a random topic. I would then send this to my high school English teacher, and if it got maybe a B or above I would consider it legit.

    --
    Saying "I'll probably get modded down for this" in a post is the best way to get it modded up.
  26. Re:or Windows Specific. by D'Sphitz · · Score: 3, Informative

    Fun fact, by replying to all his posts to call him an idiot you drastically increase his exposure. Ever hear of "don't feed the trolls"?

  27. HOW DO YOU FEEL? __ by stupidflanders · · Score: 2, Funny
  28. OpenID signatures by bussdriver · · Score: 3, Interesting

    Integrate OpenID based signatures with email by inserting a line into the email header.

    Not a new idea, its the same old 3rd party trust situation-- so clearly the trusted OpenID servers would be targeted; however, if you added a simplistic peer ranking system on those user IDs (extending openID a little) then the bad IDs would get ranked down by real people.

    This would also provide a means for verification for multiple emails used by the same individual's OpenID which could shield their actual identity (but not any better privacy than you have already.)

    Additional headers for point of origin server could also be useful as some servers are less trust worthy than others (note: spam ranking is fuzzy and a slight nudge either way near the threshold value can make a noticeable difference. ) Server identity issues are already being worked on; but emails are not tied securely to the original server.

    I'd like to see a standard email header line for spam ranking (0-100?); I'm sick of these "{spam?}" lines inserted in subject lines that I see time to time.

    An OpenID based solution would get OpenID heavily tested since spammers may solve the big AI problems as well as letting us know where to get Viagra.

  29. Offshoring CAPTCHA solving by Animats · · Score: 5, Informative

    The spammers have a new solution to CAPTCHAs in place - offshore outsourcing. This has become a sizable operation. System status earlier today:

    Current Status: Volumes are exceedingly high. -- Automatically dispatching more labor
    Queued Captchas: 91
    Total outsourced volume: 4564301

    This service is integrated with Craigslist auto posting tools, allowing high-speed spamming of Craigslist. It's also used for other services, like obtaining GMail accounts.

    Even Craigslist's callback-by-phone system is starting to crack. Temporary phone numbers for Craiglist verification, provided by marginal telephony providers, have dropped to $1.50 in bulk.

    The overall effect of Craigslist's new protections is that the cost of spamming has gone up, enough to slow down the low-rent operators but not by enough to stop it.

    As I've pointed out previously, Google plays a central role in this. Google's services provide a facade of anonymity for scammers to hide behind. GMail for anonymous mail, YouTube for anonymous infomercials, AdWords for anonymous advertising, Checkout for anonymous money transfer, and Blogger/Blogspot for anonymous redirectors to zombie machines are all valuable services for scammers and spammers. All those services are used heavily by Craigslist spammers.

    Others have provided some of the same services, but the competing services had bad reputations. Anybody trying to do business via Hotmail just had to be phony. Many mail agents just block all Hotmail mail. Anyone running a business off of "freewebpage.org" probably wasn't someone you'd want to deal with. So you had some strong indications of lack of legitimacy there.

    Google, though, still has a good reputation. The combination of Google's reputation and low customer standards offers a great opportunity for scammers, and they're taking it.

  30. Digital Spy by Rik+Sweeney · · Score: 2, Interesting

    Digital Spy have an interesting, but unfortunately very annoying, way of dealing with Captcha. If you sign up from a Hotmail, Gmail or Yahoo account, then you have to pay Digital Spy £5 to register that account. Business email addresses or ones from ISPs don't require a fee.

    A simple albeit incredibly annoying solution.

  31. I've been playing around with next gen CAPTCHAs... by Panaqqa · · Score: 2, Interesting

    I had thought of using something similar to what I have posted at the link below. The user must solve three of these in a row. Of course the number of fonts/numbers/backgrounds would be much large. Also I planned to introduce letters, letter pairs and shapes. But the key concept is that the instructions to solve are also embedded in the image. Much tougher I would think.

    And what does /. think?

    Next gen CAPTCHA link here.

    Note - this is just a random sample image, not an actual implementation.

  32. Re:blacklists by Repossessed · · Score: 2, Informative

    Most of these attacks come from zombies, and I don't think anyone wants to block potential customers.

    Though if they did, maybe people would start paying attention to computer security.

    --
    Liberte, Egalite, Fraternite (TM)
  33. A good solution here... by encoderer · · Score: 4, Interesting

    A good solution here is to include this as part of the turing test itself.

    As I mentioned upthread, I'm a partner in a web dev shop. We do a lot of social networking (of course) and about a year ago we developed a utility to create just this type of turing test. For example, we'll have a picture, and ask the question "What is the color of the 3rd fish from the left?"

    What we do, is we pair these tests on a page. We'll include a known test, like the one above. And we'll also show an unclassified image and we might ask "how many people are in this picture?"

    There is no wrong answer for that test, and their answer is recorded. Soon, that same question will be asked for that same picture. As soon as its confirmed 2 times, it gets classified as having n people. Soon after it would be displayed again asking "how many females are in this pic?" or "what color shirt is the person on the right wearing?"

    When we created the app, the DB had about 5000 turing tests in it. We then attached a DB of about 100,000 images that were pre-classified but not to an extent that would allow us to write a test off it.

    Now, after a year in use across a couple dozen moderately trafficked websites, we have nearly 25,000 turing tests. All 20,000 new tests have been created thru the technique I described above.

    The real reason we did it wasn't to save on some development costs. We could've hired temp workers and paid them $8 an hour to classify pictures.

    We did it because I believe strongly that the key to simple turing tests like this is a large corpus of data. If a bot only encounters the same test once or twice EVER, then the problem becomes difficult to solve. This is like the ANTI-CAPTCHA.

    CAPTCHA was all about taking a specific technique to its maximum extent: Challenge a computer system by taking a narrow field (OCR) and pushing it beyond the current state-of-the-art.

    These tests are all about a general technique thats broad where CAPTCHA is just deep.

    The only way to build a bot to solve each test in our DB would be to give it genuine intelligence. It would have to be capable of determining context, reference, connotation, image ID, etc.

    As a programmer, if you say "Here's a captcha, write a program to solve it" I wouldn't know HOW, but I'd at least have an idea of where to begin.

    Now, if you show me a picture with the turing test of "What object is in the hands of the 3rd woman from the left" ... well... i wouldn't know where to begin.

    1. Re:A good solution here... by Mr2001 · · Score: 2, Interesting

      What we do, is we pair these tests on a page. We'll include a known test, like the one above. And we'll also show an unclassified image and we might ask "how many people are in this picture?"

      This is basically what reCAPTCHA does, although they only use words. They take images of words that off-the-shelf OCR software failed to read, apply more distortions, and serve them up two at a time. One of the words is known; the other is unknown but becomes known after enough people have submitted the same answer.

      And as a bonus, the answers aren't just used to grant access to a web site - they're used to digitize the old books that the images came from in the first place.

      --
      Visual IRC: Fast. Powerful. Free.
    2. Re:A good solution here... by markandrew · · Score: 3, Insightful

      "There is no wrong answer for that test, and their answer is recorded. Soon, that same question will be asked for that same picture. As soon as its confirmed 2 times, it gets classified as having n people."

      How do you know that those 2 confirmed times weren't bots, and that you've just allowed those bots to effectively choose the answer to your question?

  34. Re:or Windows Specific. by Deagol · · Score: 2, Funny

    Now, now gents... No more of this alt.cascade shit -- USENET is dead, remember?

  35. Blind people by Dogun · · Score: 2, Insightful

    A lot of blind people surf the web too, you know. How do you think they like to be confronted with a CAPTCHA?

    The end of CAPTCHAs is a win for web usability.

    1. Re:Blind people by Jeremy+Erwin · · Score: 2, Insightful

      The end of CAPTCHAs is a win for web usability.

      Hmm-- a tradeoff between pissing off vast majority of users who are annoyed by spam, and pissing off the tiny minority of users with impaired vision.

  36. SEOs - Lying to Robots so Robots Lie to Humans by billstewart · · Score: 5, Interesting

    Search Engines help humans find web pages that the humans might find interesting, and they do this by having robots spider the web looking for patterns. Search Engine Optimizers try to get humans to read their customers' web pages in three ways:

    • Making it easy for the robots to find the content. Google's how-to page tells you pretty much everything you need to know, and it's not hard, but I guess there are companies who want to hire somebody to clean up their web page structure for them instead of doing the work themselves, or to tell their graphic designers to stop using complex Flash-based mouseover gesture interactions instead of simpler links and good indexing. Usually people who do that call themselves "consultants" or "web designers" instead of "SEOs", but not always.
    • Helping their customers write more interesting web pages instead of boring ones. Usually people who do that call themselves "editors" or "content consultants" or whatever instead of "SEOs", but not always.
    • Lying to the search engines' robots so that the customers' uninteresting-to-humans web pages match patterns that the robots identify as "interesting", so the robots will lie to humans about the interestingness of those pages. Sometimes this includes building link farms or generating vast reams of uninteresting content with popular keywords and ad banners or kiting millions of domain names. Usually people who do this call themselves "SEOs" or "Search Engine Optimization Consultants" instead of "lying scum polluting the Internet". But sometimes they pretend to be something else, like "Advertising specialists" or whatever.
    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
    1. Re:SEOs - Lying to Robots so Robots Lie to Humans by 1u3hr · · Score: 2, Insightful
      But if I have a website selling Apple Pies and I link every instance of the word "Apple Pie" to the front page of the site, how, really, can you have an issue with that?

      Try reading page where every second word is a link and tell me how pleasant it is. And why, for God's sake, would you want to? You just need ONE link to the front page at the top.

      It makes the site stink of SEO and I'm likely to give up on it immediately.

  37. Gold Farming as CAPTCHA equivalent by billstewart · · Score: 3, Informative

    Humans may not be as fast as robots, but they can be surprisingly cheap. There's enough of the world where $1/hour* is an attractive wage that speak some English, and if the people there can solve a CAPTCHA in 9 seconds, that's at the $0.0025 price level that Nick was referring to. (Hi, Nick!)

    If you're a scammer and there's a website that you want to crack, but it's not big enough to pay somebody to develop an algorithm for (either because the CAPTCHA's too hard or changes too often etc.), you can find some corrupt Nigerian generals' orphaned children who'll do it, or some Chinese guys who are tired of beating up monsters to get gold pieces or magic swords.

    I don't know the going price of zombies or mail relay accounts, and it's probably dropping at faster than Moore's Law, but some sites are probably worth attacking.

    * "Make good money $5 a day... Made any more I might move away..."

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  38. Re:the solution being .. by Jerf · · Score: 2, Insightful

    The solution being to design an email transport system that is immune to spam/phishing and doesn't rely on CAPTCHAs to authenticate endusers.

    "What's the problem? The solution to the problem is simple... just solve it!"

    Brilliant! Why didn't any of us think of that?

    Don't bother telling me how *you* can't figure out how to do it.

    And your solution is...?

    Please bear in mind "The system does not do X and Y" is not generally the form a real solution takes. Although it gives me one hell of an idea for the next joke computer language, one that requires you to enumerate all the things it shouldn't do...

  39. Leverage by Raenex · · Score: 2, Insightful
    1. Re:Leverage by Raenex · · Score: 2, Insightful

      The whole point of "using" something is to gain value from it. This word "leverage" is a blight descended from marketing droids trying to make their simple ideas sound fancy. It's not enough to use the tool they are trying to sell you -- no, you will leverage it.

      Check the word usage in the summary: "bad guys are leveraging broken CAPTCHAs to ply their evil trade"

      Read again in plain English: "bad guys are using broken CAPTCHAs to ply their evil trade"

      Your sentence: "because no one has built a system like this that leverages and extends existing email servers - private organizations leveraging social connections have moved in to fill the gap"

      Read again in non-marketing English: "because no one has built a system like this that builds upon existing email servers - private organizations using social connections have moved in to fill the gap".

  40. What we should use... by sionide21 · · Score: 2, Funny

    Is logic puzzles. "You are in a room with three guards, one of these guards always lies, one of them always tells the truth, and one of them lets you register this email address. Who do you ask?" Let's see a computer solve that!

  41. Only on Slashdot could this be modded insightful by Anonymous Coward · · Score: 3, Insightful

    Way to go use a post about the cracking of captchas, which is done by the way using standard techniques developed by academic researchers and using the 'let an unwary human solve it to get to porn' approach, both of which were foreseen by researchers as reasons why captchas would not work in the long term, to deliver a baseless critique of academia.

    Academia is probably the least dogmatic and bureaucratic environment there is. My personal experience with this comes from a physics lab, but I've heard similar stories from colleagues researching biology and information science, so I think this'll hold true for most exact sciences. People are researching whatever looks promising to them, sometimes radically changing the landscape of their field in the process.

    Academics may start out as regular folk, but people do get smarter when they have to use their brain. Most academics are actually a lot smarter than normal folk, not because they were born smarter per se, but because they have during their career honed their thinking skills to an extent that normal people cannot even begin to appreciate. Thinking doesn't come naturally to people. When you're born, you're just a (relatively bad) pattern matcher, prone to seeing things that arent there, to invent causes where none exist. To get a grasp of logic, and how people often unwittingly abuse it, on the advanced math that is needed to understand how the world works, to understand how people can delude themselves, and so on, and of course to actually learn all the theory, you actually have to work hard. And in doing so, you will get smarter.

    As for prior research being just a load of baggage, if people start to do research in field without prior knowledge, they almost always end up like Neal Adams.

    Further, academia is made of critique. Academia is pretty much the only environment where really everything stands up for discussion and no theory or argument stands longer than the time it takes to refute it. Try to find that in the private sector or politics, with their power games, or the personal sphere where what counts is only the number of adherents of an idea, even if it's totally debunked. Oh the bitter irony of a Slashdotter accusing academia of groupthink.

  42. You aren't supposed too solve that one by SmallFurryCreature · · Score: 2, Insightful

    Instead of solving the catchpa they want you to pay up for the payed service that doesn't have the catchpa.

    Rapidshare WANTS to delay you and make it hard because the free users just cost them money.

    --

    MMO Quests are like orgasms:

    You may solo them, I prefer them in a group.

  43. Re:flash by BrightFlow · · Score: 2, Insightful

    Has anyone tried flash for capatcha? Seems like that might stop em' for a little bit.

    Or better yet Silverlight! That'll stop even more of 'em