Tagged Questions

reCAPTCHA is a system originally developed at Carnegie Mellon University that uses CAPTCHA to help digitize the text of books while protecting websites from bots attempting to access restricted areas. On September 16, 2009, Google acquired reCAPTCHA. reCAPTCHA is currently digitizing the archives of The New York Times. Source: Wikipedia

learn more… | top users | synonyms

106
votes
22answers
39k views

Has reCaptcha been cracked / hacked / OCR'd / defeated / broken?

Have any programming methods have been used to defeat reCAPTCHA? I'm interested in seeing evidence and potentially demonstrations that reCAPTCHA in particular has been made obsolete by completely ...
26
votes
17answers
6k views

Are reCAPTCHA CAPTCHAs getting harder or is just me [closed]

As I have been testing sites, I have found reCAPTCHAs getting more and more difficult to read. Is it just me or are others having this problem too? Along with this, I had a user this morning complain ...
9
votes
7answers
9k views

Recommendations for java captcha libraries

I'm looking for a replacement for JCaptcha, which doesn't seem to be maintained any more, and isn't very good to begin with. The replacement has to integrate nicely with JavaEE webapps. As I can see ...
8
votes
4answers
824 views

ReCAPTCHA ajax loaded theme problem

Can not figure out how to theme an ajax loaded recaptcha. The below code does not work. From Google Recaptcha Saw this post Recaptcha ajax API custom theme not working, but I am definitely viewing ...
7
votes
4answers
176 views

Is email address validation really needed to validate new users?

I've been looking at reddit.com and they don't require new users to enter an email address. Instead, they only require users to enter a captcha. I've been considering only using recaptcha to verify ...
7
votes
4answers
1k views

reCAPTCHA accepting one word out of two

I am a bit confused about how reCAPTCHA works. I have implemented it using ROR. Sometimes even if i specify only one word out of two, it returns true while sometimes it fails. I am really confused ...
7
votes
1answer
2k views

Using reCAPTCHA on localhost

I'm developing a website using PHP and I want to make a human verification in one of the sessions. For the development, I'm initially running the system locally and when it is ready, I'm gonna make ...
6
votes
2answers
2k views

.NET Recaptcha https

We've started using the ASP.NET recaptcha control and it works fine. but one of the requirements we have is that all outbound traffic goes over Https. I know that recaptcha supports https, but It's ...
6
votes
1answer
830 views

reCAPTCHA-like Web Service in other Languages

Is there a CAPTCHA web service like reCAPTCHA that supports languages other than English? It would be nice to have localized CAPTCHAs for non-English users.
6
votes
3answers
942 views

django forms wizard and recaptcha

I did a recaptcha integration using the following django snippet settings.py RECAPTCHA_PUBLIC_KEY = '<your public key>' RECAPTCHA_PRIVATE_KEY = '<your private key>' #widgets.py ...
6
votes
8answers
4k views

Are there any alternatives to recaptcha.net, for stopping spam?

A member of my company in greater ranking than myself refuses to use recaptcha.net on his website to thwart spam off of a public form. He thinks it would be difficult for anyone coming to our site to ...
6
votes
6answers
6k views

How to make reCAPTCHA work with a ValidationGroup in ASP.Net (captcha)

I am using the ASP.Net plugin and control provided by reCAPTCHA. I can successfully get the control to work if the submit button on the web form is not in a validationgroup. There is no ...
5
votes
2answers
194 views

Recaptcha creates iFrame on page, breaks styling

Recaptcha is adding a "This frame prevents back/forward cache problems in Safari" iFrame to the top of my website (code included below), which is pushing off the styling by 20-30px (approximately). ...
5
votes
2answers
463 views

input tag InvokeMember(“Click”) not firing onclick event in web browser

I am using Dotnet Web Browser to click an Input Element - Button. When this click event is fired, it performs a JS function, which generates captcha using Google Recaptcher, source of which looks like ...
5
votes
1answer
1k views

How do I correctly install ambethia/recaptcha with rails 3

I have done the following steps: Added to gemfile: gem "recaptcha" Added to config/initializers/recaptcha.rb Recaptcha.configure do |config| config.public_key = 'MyKeyHere' ...
5
votes
4answers
6k views

Recaptcha - Form Customization

Does anyone know if recaptcha can be fully customize without the default frame. I need the recaptcha image to only be a certain width as well as the input field. Has anyone done this before with ...
4
votes
2answers
50 views

execute code AFTER Recaptcha.reload() is finished

I have a function below which is called to reload a recaptcha image. It works, reloads the image but won't do anything after that. Basically the form is small that has this recaptcha on it so I've ...
4
votes
1answer
83 views

Symfony2 add reCaptcha field to registration form

I'm trying to add EWZRecaptcha to my registration form. My registration form builder looks something like this: public function buildForm(FormBuilder $builder, array $options) { ...
4
votes
1answer
95 views

.net Recaptcha always returns valid

I seem to be having the opposite issue to many people with recaptcha. instead of it always returning false, its always returning true: <recaptcha:RecaptchaControl ID="recaptcha" runat="server" ...
4
votes
1answer
442 views

one word recaptcha?

hello i see facebook is using recaptcha, but somehow in their register page, they can show one word of captcha instead of two, and then i notice that repcatcha validate only the first word, and the ...
4
votes
3answers
232 views

creative CAPTCHAs

looking for suggestions on creative non/text captcha's like this one for example (OMG - 1 thing Microsoft done right): ASIRRA or DISTCHA I will be using akismet anyway - but as an additional line ...
4
votes
2answers
950 views

Recaptcha fixed image size

Why is recaptcha image fixed in size 300x57 ? Even when customizing the div where the image is injected, the width and height of the div are overridden and set to 300x57. Of course the image can be ...
4
votes
2answers
3k views

How to Reload ReCaptcha using JavaScript?

I have a signup form with AJAX so that I want to refresh Recaptcha image anytime an error is occured (i.e. username already in use). I am looking for a code compatible with ReCaptcha to reload it ...
4
votes
4answers
866 views

Recaptcha being triggered from masterpage control

Hey, I have a master page which contains a Login control so that the user can login/logout from any page. However, a couple of content pages require a Recaptcha control. This causes problems because ...
4
votes
2answers
1k views

reCAPTCHA Ajax API + custom theme not working

I can't see where I'm going wrong. I've tried everything I could think of, reCAPTCHA is just not working with the Ajax API. Here's what my code looks like: <!-- this is in <head> --> ...
4
votes
3answers
691 views

reCaptcha on iPhone App using SDK

Has anyone used reCaptcha on their iPhone application? I am trying to figure out how to embed it in my App...
4
votes
1answer
644 views

Rails Functional Test using Recaptcha

My UsersControllerTest currently fails because I use verify_recaptcha in UsersController#create. How can I write my tests such that a known good CAPTCHA response is passed with params[:user]? I am ...
4
votes
4answers
11k views

using reCAPTCHA with ajax…javascript loading problem

I trying to implement reCAPTCHA in one of my forms,...but i am using ajax as the submission. (More specifically the prototype ajax.updater) Once I submit and error check my form I try to load the ...
3
votes
3answers
139 views

How to reduce the Recaptcha difficulty?

I use RecaptchaControl, and the users complain that the image is not that clear (the black part in the the captcha is too hard to read). Is there any property to make the image less difficult (less ...
3
votes
1answer
287 views

How to use PrimeFaces Captcha?

I went through the user guide and the showcase but couldn't find a way to get the Captcha evaluation result in the backing bean. I can see the result on the top message bar on the UI but how to get ...
3
votes
1answer
59 views

Any harm in using global domain validity when obtaining ReCAPTCHA public/private keys?

Just curious - is there any risk in using a public/private key obtained from ReCAPTCHA for intended use only on one domain, but then we ending up using it for another one. I intended to obtain it for ...
3
votes
2answers
997 views

recaptcha https problem on https://api-secure.recaptcha.net/

I am using recpatcha on an SSL site but I am not getting the image on some browsers because the ssl certificate of it has been expired ! https://api-secure.recaptcha.net/ if I reference the ...
3
votes
3answers
895 views

Using ReCaptcha with MVC3 and razor?

How exactly do you get ReCaptcha work in MVC3 with razor? I tried "Install-Package microsoft-web-helpers" but still could not get it to work on my .cshtml razor page, it cannot find the type ...
3
votes
1answer
121 views

Is there a way to set custom language strings for the ReCaptcha ASP.Net user control?

I'm using the ReCaptcha ASP.Net user control and I was wondering if anyone is aware of a way of setting custom language strings for the control from markup. I know how to do it if I'm not using the ...
3
votes
1answer
609 views

recaptcha within modal window (fancybox)

I am trying to load a form through ajax within fancybox. It works great, everything works fine. I used the recaptcha (rails) plugin and got the captcha on the form. Now when the fancybox loads, its ...
3
votes
3answers
797 views

Hidden field as a (re)CAPTCHA alternative in a ASP.NET MVC2 application

I am writing a "contact us" form on a web project that I am currently involved with. While I've used reCAPTCHA in the past, for this project, I would prefer not to clutter the interface with extra ...
3
votes
4answers
1k views

IE6 dose not parse the loaded JavaScript file (Recaptcha hosted by Google)

This is a really strange issue, I am trying to use the Recaptcha on one of the website, and it works for all browsers tested except for IE6. I have make a reference to the google's js: ...
3
votes
3answers
1k views

How do I correctly Re-render a Recaptcha in ASP.NET MVC 2 after an AJAX POST

Ok... I've downloaded and implemented this Recaptcha implementation for MVC which uses the ModelState to confirm the validity of the captcha control. It works brilliantly... except when I start to ...
3
votes
2answers
2k views

Zend framework and ReCaptcha

I need to insert ReCaptcha in a form in my ZF application. I'm trying to follow the official documentation, but the ReCaptcha service return me always the error 'incorrect-captcha-sol'. The code I'm ...
3
votes
5answers
7k views

Need help with reCAPTCHA - keep getting incorrect-captcha-sol

I am trying to add a reCAPTCHA to my site, but keep getting incorrect-captcha-sol error when I submit the answer. Can anyone tell me if I am correct in doing the following? I have a generic ...
3
votes
3answers
3k views

How do I show multiple recaptchas on a single page?

I have 2 forms on a single page. One of the forms has a recaptcha displaying all the time. The other should display a recaptcha only after a certain event such as maxing out login attempts. So ...
3
votes
2answers
592 views

How would one integrate ReCaptcha in to BlogEngine.net (ASP.net C#)?

I am trying to figure out how to best integrate the ReCaptcha API with BlogEngine.net. If there is anyone that has done this -- how did you do it? Thanks, Chris
3
votes
2answers
724 views

Has anyone gotten Recaptcha to run on the Google App Engine (in Java)?

I followed the recaptcha instructions and created a simple app that works if I run it in Eclipse using a local Tomcat server but the same files give an error (verify-params-incorrect) when validating ...
2
votes
2answers
135 views

ReCaptcha always returns false, with no error

I've installed the ReCaptcha, configured my public and private key, and everything is fine until I type any answer on it, no matter if it's good or wrong, it doesn't even respond with the error there ...
2
votes
1answer
108 views

weird reCaptcha error in PHP

I am having a problem with implementing a reCaptcha on my website. I followed the tutorial here: http://code.google.com/apis/recaptcha/docs/php.html and implemented just a basic reCaptcha with an ...
2
votes
2answers
108 views

reCAPTCHA vs other captcha systems

What is a good reason to choose reCAPTCHA over a well known and tested captcha generator on the server. Is it just philanthropy (helping with digitizing texts) or are there other good reasons.
2
votes
3answers
81 views

Can Someone Recommend an Easier Captcha

I have a website that's started automated account sign ups and I'd like to implement some sort of captcha. I already use this one on several of my sites. However, this can be hard to read even for ...
2
votes
0answers
79 views

recaptcha not showing in ie7

I'm not getting recaptcha to show in IE 7 . I've looked into several things on the page and nothing seems to make a difference. Following is page is the one with the issues, if anybody wants to ...
2
votes
2answers
253 views

Error: RecaptchaField::validate(): Recaptcha-service error: 'invalid-request-cookie'

I am getting the following error message after setting up the ReCaptcha spam verification. The ReCaptcha works correctly I am just concerned about the errors. Using Silverstripe version 2.4.5 ...
2
votes
3answers
116 views

Spam Defeating All My Captcha

I have a wordpress blog and I had the Captcha plugin on it for the longest time because it worked. Lately though I am getting mass amounts of spam. I then tried to do a "Add These Random Numbers ...

1 2 3 4 5 8