Is it possible to solve google recaptcha programmatically

sane120

Regular Member
Joined
Oct 4, 2013
Messages
265
Reaction score
101
Can you solve google recaptcha programmatically without using services like 2captcha ??
 
Probably not. However, could you not pull up the audio captcha instead, and then solve it using some speech recognition api? I think such scripts already exist.
 
Depends on your setup, but @Gogol gave probably the best solution when it comes to the complexity bypassing it.
 
Probably not. However, could you not pull up the audio captcha instead, and then solve it using some speech recognition api? I think such scripts already exist.
I think this not available anymore, since I can't see audio option in google recaptcha
 
Depends on your setup, but @Gogol gave probably the best solution when it comes to the complexity bypassing it.
What about if there is no audio option for example see reddit sign up page
 
Again, depends on your setup. If you do not provide enough information on how your automation works, then we cant help you.

I have audio on my captchas and I can use it.

edit: looks like for reddit its removed, yeah. Then your only choice is to build up your cookie strong enough to be able get checkbox captcha.
 
I think this not available anymore, since I can't see audio option in google recaptcha
Grrr seems like google patched it then. Otherwise, it would been the simplest solution. By the way, it would be interesting to see if this violates any US policy for the visually impaired people. Possible way of suing google? ;)
 
Again, depends on your setup. If you do not provide enough information on how your automation works, then we cant help you.

I have audio on my captchas and I can use it.
I still don't have a setup but i'm wondering if it possible or not
 
All major services for captcha solving have API documentation. You can easily integrate your software with it.

I'm using 2captcha, it solves reCaptchas for 5-10 seconds or faster
 
All major services for captcha solving have API documentation. You can easily integrate your software with it.

I'm using 2captcha, it solves reCaptchas for 5-10 seconds or faster
2captcha is not programmed, people are paid to solve it for you
 
It's possible through machine learning, but you would require a lot of datasets. For example, you can probably train a huge list of images that are related to cars and then it can recognise cars when solving a captcha.

AI is a way better option here though.
 
Yes, you can use a service like 2captcha to solve it through a program that runs on requests. You will require to pay for the 2captcha of course. Through program it will require the API of the google captcha which can be extracted through web requests which then will be sent to 2captcha to be solved. However, the prices add up quickly. Use other captcha solver that is a lifetime or monthly program if your dedicated in whatever you are doing, else you can stick with service from the web like 2captcha,anticaptcha, etc.
 
Well, theoretically, it is possible, but when it comes to practical captcha solving using machine learning. The bottleneck is computing power, which apparently Google has lots of it.
So to put it in simpler terms, you can't train such astronomical databases with limited financial resources, and unless you are extremely rich or are willing to look into alternative human-based captcha solving services, it can be a long journey in front of you.
 
Back
Top