1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
|
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
|
-
+
|
/*
** WEBPAGE: honeypot
** This page is a honeypot for spiders and bots.
*/
void honeypot_page(void){
unsigned int uSeed = captcha_seed();
const char *zDecoded = captcha_decode(uSeed);
const char *zDecoded = captcha_decode(uSeed, 0);
int bAutoCaptcha = db_get_boolean("auto-captcha", 0);
char *zCaptcha = captcha_render(zDecoded);
style_header("I think you are a robot");
@ <p>You seem like a robot.</p>
@
@ <p>Is that incorrect? Are you really human?
@ If so, please prove it by transcribing the captcha text
|