Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Checkbox as alternative to captcha?

Tags:

bots

captcha

Does a checbox provide an alternative to using captcha on website? I am thinking i i need to use captcha for user signup. Instead if i put a checkbox for the terms like "By clicking here I agree...." can that solve the bots issues or is captcha required in addition to the checkbox?

like image 217
Marty Avatar asked Oct 26 '10 22:10

Marty


2 Answers

One thing you can do with a checkbox is to make a honeypot. To do so, you would make a checkbox and hide it with CSS (because bots, as a rule, don't care about CSS). If the box is checked, then it's probably a bot.

like image 180
Christian Mann Avatar answered Sep 28 '22 16:09

Christian Mann


If you are trying to keep bots from signing up, they will be able to check the checkbox pretty easy. the point of the captcha is that it takes human intelligence.

like image 42
Alex Lo Avatar answered Sep 28 '22 17:09

Alex Lo