Changeset 459 for pwntcha


Ignore:
Timestamp:
Jan 13, 2005, 4:26:55 PM (18 years ago)
Author:
Sam Hocevar
Message:
  • lmt.lv captcha cracker.
Location:
pwntcha/trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • pwntcha/trunk/share/Makefile.am

    r432 r459  
    22NULL =
    33EXTRA_DIST = \
     4        font_authimage.png \
    45        font_linuxfr.png \
    56        font_phpbb.png \
    67        font_slashdot.png \
    78        font_vbulletin.png \
     9        font_freesans_24_09AZ.bmp \
     10        font_comic_24_az_messed.bmp \
     11        font_comic_32_az.bmp \
     12        font_freemonobold_24_az.bmp \
     13        font_freemonobold_32_az.bmp \
     14        font_freesans_24_09AZ.bmp \
     15        font_freesansbold_32_az.bmp \
     16        font_freesansbold_36_az_messed.bmp \
     17        font_stencil_23_AZ.bmp \
     18        font_stencil_24_AZ.bmp \
     19        x_font_comic_24_az_messed.bmp \
     20        x_font_comic_32_az.bmp \
     21        x_font_freemonobold_24_az.bmp \
     22        x_font_freemonobold_32_az.bmp \
     23        x_font_freesansbold_32_az.bmp \
     24        x_font_freesansbold_36_az_messed.bmp \
    825        $(NULL)
     26
  • pwntcha/trunk/src/Makefile.am

    r456 r459  
    1111    clubic.c \
    1212    linuxfr.c \
     13    lmt.c \
    1314    paypal.c \
    1415    phpbb.c \
  • pwntcha/trunk/src/main.c

    r456 r459  
    139139        else if(!strcmp(mode, "linuxfr"))
    140140            result = decode_linuxfr(img);
     141        else if(!strcmp(mode, "lmt"))
     142            result = decode_lmt(img);
    141143        else if(!strcmp(mode, "paypal"))
    142144            result = decode_paypal(img);
     
    163165                result = decode_linuxfr(img);
    164166            }
     167            else if(img->width == 69 && img->height == 35)
     168            {
     169                dprintf("autodetected lmt.lv captcha\n");
     170                result = decode_lmt(img);
     171            }
    165172            else if(img->width == 208 && img->height == 26)
    166173            {
Note: See TracChangeset for help on using the changeset viewer.