Changeset 1003
- Timestamp:
- Jul 16, 2006, 5:07:04 PM (17 years ago)
- Location:
- pwntcha/trunk/src
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/src/Makefile.am
r1000 r1003 19 19 slashdot.c \ 20 20 tickets.c \ 21 ticketmaster.c \ 21 22 vbulletin.c \ 22 23 xanga.c \ -
pwntcha/trunk/src/common.h
r1000 r1003 47 47 char *decode_scode(struct image *img); 48 48 char *decode_slashdot(struct image *img); 49 char *decode_tickets(struct image *img); 50 char *decode_ticketmaster(struct image *img); 49 51 char *decode_vbulletin(struct image *img); 50 52 char *decode_xanga(struct image *img); -
pwntcha/trunk/src/main.c
r1000 r1003 214 214 result = decode_java(img); 215 215 } 216 else if(img->width == 290 && img->height == 80) 217 { 218 pwnprint("probably a ticketmaster captcha\n"); 219 result = decode_ticketmaster(img); 220 } 216 221 else if(img->width == 200 && img->height == 40) 217 222 {
Note: See TracChangeset
for help on using the changeset viewer.