I cannot believe that in 2013 captchas remain the most effective way to achieve whatever they are used for. I bet Google could bake something into Chrome to avoid captchas.
reCAPTCHAs are finally readable by normal humans
31–40 of 40 posts
Re: reCAPTCHAs are finally readable by normal humans
#32I thought maybe I was the only one who struggled with recaptcha captchas. On some sites I have literally tried 10-15 times before finally becoming too frustrated and giving up solving the captcha because whatever it was (form to fill out for a download, fill out a comment on a site), just wasn't worth the time I was wasting. Hugely irritating.
Re: reCAPTCHAs are finally readable by normal humans
#33I wonder if a Javascript based proof-of-work system could be used as an alternative to CAPTCHAs. It wouldn't stop spam entirely but it would rate-limit it and possibly render some forms of spam unprofitable. Aa a bonus, the proof-of-work could be tied to something useful (Folding@home?) just like reCAPTCHA's CAPTCHAs are useful for digitizing books.
Re: reCAPTCHAs are finally readable by normal humans
#34Perhaps in some glorious future utopian society, humans won't have to see CAPTCHAs at all. They don't. You can implement basic defenses like hidden input forms or checkboxes that are masked by CSS rules or served on the client side with JavaScript to weed out bots from human users, among other less intrusive techniques. Of course some bots may make use of high-level browser engines (such as those provided by acceptan…
What worked in the end was a points system for spammy behavior: First post has URL in it? +1 point. User fills out linkedin field on profile? +1 point (seriously, none of our legit users did this...). User posts a word on the blocklist? (viagra, cialis, cvv2, etc) +1 point. User Agent is IE? +1 point (we're a Mac site). After a certain number of points, the user was banned and all their generated content deleted. After a certain number of posts without triggering the ban, they're greenlighted. Spammers quickly noticed their posts disappeared instantly and left the site.
Re: reCAPTCHAs are finally readable by normal humans
#35I cannot believe that in 2013 captchas remain the most effective way to achieve whatever they are used for. I bet Google could bake something into Chrome to avoid captchas.
Re: reCAPTCHAs are finally readable by normal humans
#36Perhaps in some glorious future utopian society, humans won't have to see CAPTCHAs at all. They don't. You can implement basic defenses like hidden input forms or checkboxes that are masked by CSS rules or served on the client side with JavaScript to weed out bots from human users, among other less intrusive techniques. Of course some bots may make use of high-level browser engines (such as those provided by acceptan…
We tried a ton of those techniques (hidden fields, fields filled out by Javascript, anti-replay tokens) and none of them worked - the spammers appeared to be using botted IE installs. What worked in the end was a points system for spammy behavior: First post has URL in it? +1 point. User fills out linkedin field on profile? +1 point (seriously, none of our legit users did this...). User posts a word on the blocklist?…
Re: reCAPTCHAs are finally readable by normal humans
#37I cannot believe that in 2013 captchas remain the most effective way to achieve whatever they are used for. I bet Google could bake something into Chrome to avoid captchas.
We should feel lucky that at least captchas can help. In the future, probably, there will be no chance you could separate humans from computers.
Re: reCAPTCHAs are finally readable by normal humans
#38Does this mean that digitizing of books through reCAPTCHAs will be done at a much slower rate or not at all?
I find it difficult to believe the captcha served over the last year or so were actually scanned from books: they were so completely illegible and nonsensical. I usually had to click refresh about half a dozen times before I could even find a sample that I could read correctly.
Re: reCAPTCHAs are finally readable by normal humans
#39Does this mean that digitizing of books through reCAPTCHAs will be done at a much slower rate or not at all?
Are they even digitizing books anymore? I seem to always get a house number. The house numbers make it really easy to know I don't actually have to type that part
It still says "Stop spam. Read books." But the book-reading part is over, and now it's "Stop spam. Do Google's work for them."
Re: reCAPTCHAs are finally readable by normal humans
#40Earlier quoted context omitted.
> You can implement basic defenses like hidden input forms or checkboxes that are masked by CSS rules or served on the client side with JavaScript to weed out bots from human users, among other less intrusive techniques. Umh, anything that will end up in the POST request will be reproduced by a bot, I don't even actually look at the page when implementing screen scraping modules, but just at the Network tab of the Ch…
No no, the hidden input fields would not be filled in by a human (because they're positioned off screen by CSS, for example), whereas a bot would fill them in because the bot is just scraping the HTML for all input fields and filling them in with something. It seems like you had that backwards -- hope that clears it up.