- Timestamp:
- Jan 12, 2005, 4:42:08 AM (18 years ago)
- Location:
- pwntcha/trunk
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/src/Makefile.am
r448 r456 11 11 clubic.c \ 12 12 linuxfr.c \ 13 paypal.c \ 13 14 phpbb.c \ 14 15 scode.c \ -
pwntcha/trunk/src/common.h
r448 r456 42 42 char *decode_clubic(struct image *img); 43 43 char *decode_linuxfr(struct image *img); 44 char *decode_paypal(struct image *img); 44 45 char *decode_phpbb(struct image *img); 45 46 char *decode_scode(struct image *img); -
pwntcha/trunk/src/main.c
r453 r456 139 139 else if(!strcmp(mode, "linuxfr")) 140 140 result = decode_linuxfr(img); 141 else if(!strcmp(mode, "paypal")) 142 result = decode_paypal(img); 141 143 else if(!strcmp(mode, "phpbb")) 142 144 result = decode_phpbb(img); … … 161 163 result = decode_linuxfr(img); 162 164 } 165 else if(img->width == 208 && img->height == 26) 166 { 167 dprintf("autodetected Paypal captcha\n"); 168 result = decode_paypal(img); 169 } 163 170 else if(img->width == 320 && img->height == 50) 164 171 {
Note: See TracChangeset
for help on using the changeset viewer.