Changeset 414 for pwntcha/trunk
- Timestamp:
- Jan 4, 2005, 6:07:22 PM (18 years ago)
- Location:
- pwntcha/trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/Makefile.am
r406 r414 9 9 share/font_slashdot.png \ 10 10 share/font_phpbb.png \ 11 share/font_vbulletin.png \ 11 12 $(NULL) 12 13 -
pwntcha/trunk/src/Makefile.am
r407 r414 12 12 scode.c \ 13 13 slashdot.c \ 14 vbulletin.c \ 14 15 test.c 15 16 -
pwntcha/trunk/src/common.h
r413 r414 25 25 char *decode_scode(struct image *img); 26 26 char *decode_slashdot(struct image *img); 27 char *decode_vbulletin(struct image *img); 27 28 char *decode_test(struct image *img); 28 29 -
pwntcha/trunk/src/main.c
r408 r414 131 131 else if(!strcmp(mode, "slashdot")) 132 132 result = decode_slashdot(img); 133 else if(!strcmp(mode, "vbulletin")) 134 result = decode_vbulletin(img); 133 135 else 134 136 { … … 148 150 dprintf("autodetected slashdot captcha\n"); 149 151 result = decode_slashdot(img); 152 } 153 else if(img->height == 61) 154 { 155 dprintf("autodetected vbulletin captcha\n"); 156 result = decode_vbulletin(img); 150 157 } 151 158 else
Note: See TracChangeset
for help on using the changeset viewer.