|
|
|
|
|
by elliottcarlson
5694 days ago
|
|
Not even just guess them but accurately determine them. A few years back I was hired by a third party to build a system to break the CAPTCHA on a popular site for various evil deeds. Morals set aside, the money was good and I had a wedding to pay for. A CAPTCHA system becomes quite breakable when it becomes predictable. The system in question used an image based CAPTCHA that used the same (albeit annoying) font for each image, as well as a static distortion overlay and a second set of random distortion. By extracting a thousand sample images I was able to build a system in Perl that could determine the text with an estimated 98% success rate - and when it failed you would just request a new CAPTCHA. My solution would be to mix up images with logic. I.E. In the following list of images, which image number contains the green animal: {pic of zebra}, {pic of frog}, {pic of giraffe} This would require image recognition as well as logic. |
|