From 791f1593dd0ad015d20a817c1082179ebe3e3ca8 Mon Sep 17 00:00:00 2001 From: sam Date: Mon, 30 May 2005 13:49:55 +0000 Subject: [PATCH] * tickets.com captcha (100% success) git-svn-id: file:///srv/caca.zoy.org/var/lib/svn/pwntcha/trunk@480 92316355-f0b4-4df1-b90c-862c8a59935f --- configure.ac | 2 +- src/Makefile.am | 1 + src/main.c | 5 +++ src/tickets.c | 101 ++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 108 insertions(+), 1 deletion(-) create mode 100644 src/tickets.c diff --git a/configure.ac b/configure.ac index 5c6492d..6250644 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ AC_PREREQ(2.50) AC_CONFIG_AUX_DIR(autotools) AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE(pwntcha, 0.4) +AM_INIT_AUTOMAKE(pwntcha, 0.5) AM_CONFIG_HEADER(config.h) AC_PROG_CC diff --git a/src/Makefile.am b/src/Makefile.am index 16a9dc5..f538626 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -16,6 +16,7 @@ pwntcha_SOURCES = \ phpbb.c \ scode.c \ slashdot.c \ + tickets.c \ vbulletin.c \ xanga.c \ test.c diff --git a/src/main.c b/src/main.c index 1a902c0..8191580 100644 --- a/src/main.c +++ b/src/main.c @@ -206,6 +206,11 @@ int main(int argc, char *argv[]) dprintf("autodetected slashdot captcha\n"); result = decode_slashdot(img); } + else if(img->width == 200 && img->height == 40) + { + dprintf("autodetected tickets.com captcha\n"); + result = decode_tickets(img); + } else if(img->height == 61) { dprintf("autodetected vbulletin captcha\n"); diff --git a/src/tickets.c b/src/tickets.c new file mode 100644 index 0000000..cdb624f --- /dev/null +++ b/src/tickets.c @@ -0,0 +1,101 @@ +/* + * tickets.c: decode tickets.com captchas + * $Id$ + * + * Copyright: (c) 2005 Sam Hocevar + * This program is free software; you can redistribute it and/or + * modify it under the terms of the Do What The Fuck You Want To + * Public License as published by Banlu Kemiyatorn. See + * http://sam.zoy.org/projects/COPYING.WTFPL for more details. + */ + +#include +#include +#include +#include + +#include "config.h" +#include "common.h" + +#define FONTS 8 + +/* Main function */ +char *decode_tickets(struct image *img) +{ + static struct font *fonts[FONTS]; + char *result; + struct image *tmp; + int x, y, r, g, b, cur, i, j, f; + int curx, bestx, besty; + + for(i = 0; i < FONTS; i++) + { + if(!fonts[i]) + { + char buf[BUFSIZ]; + sprintf(buf, "font_tickets%i.png", i + 1); + fonts[i] = font_load_variable(buf, "0123456789"); + if(!fonts[i]) + exit(-1); + } + } + + /* tickets.com captchas have 7 characters */ + result = malloc(8 * sizeof(char)); + strcpy(result, " "); + + /* captcha is jpeg; threshold the image */ + tmp = image_dup(img); + filter_equalize(tmp, 127); + + /* Guess all glyphs */ + curx = 50; + for(cur = 0; cur < 7; cur++) + { + for(f = 0; f < FONTS; f++) + { + for(x = curx - 5; x < curx + 10; x++) + { + for(y = 5; y < 15; y++) + { + for(i = 0; i < fonts[f]->size; i++) + { + int xmin, xmax, ymin, ymax; + int t, z; + + xmin = fonts[f]->glyphs[i].xmin; + ymin = fonts[f]->glyphs[i].ymin; + xmax = fonts[f]->glyphs[i].xmax; + ymax = fonts[f]->glyphs[i].ymax; + for(t = 0; t < ymax - ymin; t++) + { + for(z = 0; z < xmax - xmin; z++) + { + int r, r2; + getgray(fonts[f]->img, xmin + z, ymin + t, &r); + getgray(tmp, x + z, y + t, &r2); + if(r < 127 && r2 > 127) + goto char_failed; + } + } + goto char_ok; + char_failed: + continue; + } + } + } + } + result[cur] = '?'; + curx += 10; /* XXX: totally random */ + continue; + char_ok: + result[cur] = fonts[f]->glyphs[i].c; + curx = x + fonts[f]->glyphs[i].xmax - fonts[f]->glyphs[i].xmin; + } + + image_save(tmp, "woops.bmp"); + image_free(tmp); + + return result; +} +