Changeset 499
- Timestamp:
- Aug 29, 2005, 5:18:29 PM (17 years ago)
- Location:
- pwntcha/trunk/src
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/src/Makefile.am
r480 r499 20 20 vbulletin.c \ 21 21 xanga.c \ 22 easter-eggs.c \ 22 23 test.c 23 24 pwntcha_CFLAGS = $(ADDITIONAL_CFLAGS) -Wall -O6 -
pwntcha/trunk/src/main.c
r480 r499 159 159 if(img->width == 155 && img->height == 50) 160 160 { 161 dprintf(" autodetectedauthimage captcha\n");161 dprintf("probably an authimage captcha\n"); 162 162 result = decode_authimage(img); 163 163 } 164 164 else if(img->width == 175 && img->height == 35) 165 165 { 166 dprintf(" autodetectedlivejournal captcha\n");166 dprintf("probably a livejournal captcha\n"); 167 167 result = decode_livejournal(img); 168 168 } 169 169 else if(img->width == 100 && img->height == 40 && count < 6) 170 170 { 171 dprintf(" autodetectedlinuxfr captcha\n");171 dprintf("probably a linuxfr captcha\n"); 172 172 result = decode_linuxfr(img); 173 173 } 174 174 else if(img->width == 69 && img->height == 35) 175 175 { 176 dprintf(" autodetectedlmt.lv captcha\n");176 dprintf("probably a lmt.lv captcha\n"); 177 177 result = decode_lmt(img); 178 178 } 179 179 else if(img->width == 208 && img->height == 26) 180 180 { 181 dprintf(" autodetectedPaypal captcha\n");181 dprintf("probably a Paypal captcha\n"); 182 182 result = decode_paypal(img); 183 183 } 184 184 else if(img->width == 320 && img->height == 50) 185 185 { 186 dprintf(" autodetectedphpBB captcha\n");186 dprintf("probably a phpBB captcha\n"); 187 187 result = decode_phpbb(img); 188 188 } 189 189 else if(img->width == 170 && img->height == 50) 190 190 { 191 dprintf(" autodetectedXanga captcha\n");191 dprintf("probably a Xanga captcha\n"); 192 192 result = decode_xanga(img); 193 193 } 194 194 else if(img->height <= 40 && count < 10) 195 195 { 196 dprintf(" autodetectedscode/trencaspammers captcha\n");196 dprintf("probably a scode/trencaspammers captcha\n"); 197 197 result = decode_scode(img); 198 198 } 199 199 else if(img->height <= 30 && count < 100) 200 200 { 201 dprintf(" autodetectedclubic captcha\n");201 dprintf("probably a clubic captcha\n"); 202 202 result = decode_clubic(img); 203 203 } 204 204 else if(img->height == 69) 205 205 { 206 dprintf(" autodetectedslashdot captcha\n");206 dprintf("probably a slashdot captcha\n"); 207 207 result = decode_slashdot(img); 208 208 } 209 209 else if(img->width == 200 && img->height == 40) 210 210 { 211 dprintf(" autodetectedtickets.com captcha\n");211 dprintf("probably a tickets.com captcha\n"); 212 212 result = decode_tickets(img); 213 213 } 214 214 else if(img->height == 61) 215 215 { 216 dprintf(" autodetectedvbulletin captcha\n");216 dprintf("probably a vbulletin captcha\n"); 217 217 result = decode_vbulletin(img); 218 } 219 else if(img->width == 480 && img->height == 360 && count == 253) 220 { 221 dprintf("probably not a captcha\n"); 222 result = decode_easter_eggs(img); 218 223 } 219 224 else
Note: See TracChangeset
for help on using the changeset viewer.