People are already cracking 100% Google Recaptcha, After reading another post on Medium how they cracked with python and tensorflow Really Simple Captcha (WordPress CSM) in 15 minutes with 100% solve rate.
They even have here their script + 9999 Solved Captcha of Really Simple Captcha (a captcha so simple, I just dont understand why CB has a success rate of like 2% on it).
https://s3-us-west-2.amazonaws.com/mlif-example-code/solving_captchas_code_examples.zipSo after trying to improve this captcha in CB and "brute force" it I came to realization why CB is so bad compared to these other networks.
CB can be hugely improved if it has simple logics build into it.
Brute Forcing it is just plain and simple trying to brute force all possible filters. But WITHOUT LOGICS.
you can simply waste an hour on 2 on filters that you already know not gonna work.
But what does CB do? Still Brute forcing it with same filters just adding more % or scaling it even further.
Even though a human can see, this is not going to work out.
So my question to
@nick is, Why don't you add simple logics to the CB SDK?
Like if it sees that it is failing with a filter, why try another one after a x amount of retries.
OR..
sometimes what i have seen is with certain filters it gets like a 30% success rate.
But then moves on to a totally different filter which gets you like 50% succes rate. (with totally different filters)
Why not build a system in CB that it first going to MASSIVELY Brute Force (as quick as possible) with all filters that are similar. And saves that with filter 1,2,3,4,5,6,7 it has between 10-50% success rate.
and then second step in system could be trying a combination of filter 1,2,3,4,5,6,7 to even futher increase success rate%
After it has done that, save these filters and add on top new ones (again step 1 but with saved filters).
Right now i feel like the system of CB is... DUMB.. I dont know how else to say it.
Without any logics (doesnt have to be AI logics) but right now CB SDK is plain and simple... A Stupid machine...