- Timestamp:
- Jan 4, 2005, 3:12:26 AM (17 years ago)
- Location:
- pwntcha/trunk/src
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/src/Makefile.am
r389 r400 4 4 pwntcha_CFLAGS = $(ADDITIONAL_CFLAGS) -Wall -O6 5 5 pwntcha_LDFLAGS = $(ADDITIONAL_LDFLAGS) 6 pwntcha_SOURCES = main.c image.c filters.c common.h slashdot.c phpbb.c test.c 6 pwntcha_SOURCES = \ 7 main.c \ 8 image.c \ 9 filters.c \ 10 common.h \ 11 phpbb.c \ 12 scode.c \ 13 slashdot.c \ 14 test.c 7 15 8 16 if USE_OPENCV -
pwntcha/trunk/src/main.c
r392 r400 32 32 { 33 33 char *mode = "auto"; 34 int c; 35 int digit_optind = 0; 34 36 35 37 argv0 = argv[0]; 36 37 int c;38 int digit_optind = 0;39 38 40 39 for(;;) … … 123 122 else if(!strcmp(mode, "phpbb")) 124 123 result = decode_phpbb(img); 124 else if(!strcmp(mode, "scode")) 125 result = decode_scode(img); 125 126 else if(!strcmp(mode, "slashdot")) 126 127 result = decode_slashdot(img); … … 131 132 dprintf("autodetecting phpBB captcha\n"); 132 133 result = decode_phpbb(img); 134 } 135 else if(img->height == 25) 136 { 137 dprintf("autodetecting scode captcha\n"); 138 result = decode_scode(img); 133 139 } 134 140 else if(img->height == 69) -
pwntcha/trunk/src/slashdot.c
r395 r400 35 35 36 36 /* Main function */ 37 char * 37 char *decode_slashdot(struct image *img) 38 38 { 39 39 struct image *tmp1, *tmp2, *tmp3, *tmp4, *tmp5, *tmp6, *tmp7; -
pwntcha/trunk/src/test.c
r389 r400 29 29 30 30 /* Main function */ 31 char * 31 char *decode_test(struct image *img) 32 32 { 33 33 struct image *tmp1, *tmp2, *tmp3, *tmp4, *tmp5, *tmp6, *tmp7;
Note: See TracChangeset
for help on using the changeset viewer.