r3jack / ruby-captcha-breaker

A captcha solver written in Ruby. Proof-of-concept.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ruby Captcha Solver

Ever wondered how to solve a captcha? Do you think Ruby could do it?

These were the questions I set out to answer.

Turns out that Ruby is quite slow, but as so many other interpreted languages, it is bindable to powerful libraries written in C. This means you get to enjoy the simplicity of Ruby and the speed of a compiled language for the tasks that matter.

I've choosen a simple catcha used by NOAA to protect their service from automated requests. I really like this for meteo forecasts (I'm a paraglider pilot), but the god damn captchas are so annoying!

This is the victim and process of breaking it is quite simple:

The captcha

  1. First I fill everything that's white with black - this removes the breaks in the letters we're supposed to read.
  2. Then I turn the image into a binary image (only black and white).
  3. It's then time to erode the image 3 times - Eroding means that the outer black pixels of the letters will become white, since the noise letters are thinner, they'll disappear.
  4. In the end I dilate the image 4 times to make it ready for tessaract to read the caracters - dilating is the opposite of eroding, so the white pixels adjacent to a black pixel become black as well. This just restores the wheight of the font.
  5. Ask tessaract to read the charactes and voi la, we've solved a captcha.

The result of the pre-processing algorithm:

The captcha solved

Easy as pie for tesseract to handle :)

About

A captcha solver written in Ruby. Proof-of-concept.


Languages

Language:HTML 91.7%Language:Ruby 8.3%