summaryrefslogblamecommitdiffstats
path: root/captcha.c
blob: 7189793a69619fdfa434ddd93085d84fdad7e3a7 (plain) (tree)
1
2
3
4
5
6
7
8
9



                     




                                                                          

                    

                            








                                        
                                                 

                                        
                        
 



                   
#include "captcha.h"

#ifdef CONFIG_CAPTCHA

//ask question if you are bot or not will protect from simplest bots
//or just any other automatic stuff
//After captcha used amount of logs reduced, becouse 99% logs before where
//generated by auto-bot-travelers
int captcha_test1( term_screen *ts)
{
	int ret = 0;
	int column=0, row=0;
	int c=0;

	//setup terminal output position
	term_clr_scr( ts );
	column = term_get_maxcol( ts );
	row = term_get_maxrow( ts );
	term_cur_set_c( ts, column/2 );
	term_cur_set_r( ts, row/2 );

	//just ask question
	term_printf( ts, "Are you bot?(y/n):\n");
	c = term_getc( ts );
	if ( (c == 'n') || ( c == 'N') )
		ret = 1;

	return ret;
}

#endif