Changeset 480


Ignore:
Timestamp:
May 30, 2005, 3:49:55 PM (18 years ago)
Author:
Sam Hocevar
Message:
  • tickets.com captcha (100% success)
Location:
pwntcha/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • pwntcha/trunk/configure.ac

    r461 r480  
    77AC_CANONICAL_SYSTEM
    88
    9 AM_INIT_AUTOMAKE(pwntcha, 0.4)
     9AM_INIT_AUTOMAKE(pwntcha, 0.5)
    1010AM_CONFIG_HEADER(config.h)
    1111
  • pwntcha/trunk/src/Makefile.am

    r477 r480  
    1717    scode.c \
    1818    slashdot.c \
     19    tickets.c \
    1920    vbulletin.c \
    2021    xanga.c \
  • pwntcha/trunk/src/main.c

    r477 r480  
    207207                result = decode_slashdot(img);
    208208            }
     209            else if(img->width == 200 && img->height == 40)
     210            {
     211                dprintf("autodetected tickets.com captcha\n");
     212                result = decode_tickets(img);
     213            }
    209214            else if(img->height == 61)
    210215            {
Note: See TracChangeset for help on using the changeset viewer.