0 votes
514 views
in General by

I implemented the Google ReCaptcha on the form but that not preventing spam entries.

Is there ANYTHING I can do to fix this problem.

1 Answer

0 votes
by (500 points)

You can add a honeypot on you form. A honeypot is a field added to the form that the users can’t see due to CSS or JavaScript (which hides the field). When a spam bot comes to a form, it fills out EVERY input field, but it ignores the CSS code. This is the behavior we can exploit. You would create a regular form input field with HTML (this will be the honeypot field). The spam bot will see the field, but you’ll use JavaScript to hide the field from users. If the honeypot field is empty, the Javascript code would submit the form. On the other hand, if the honeypot field has data, you know it could only have been filled out by a spam bot.

Related questions

+1 vote
1 answer 637 views
0 votes
1 answer 1.4k views
0 votes
1 answer 1.7k views
asked Aug 23, 2016 in Kohana by Justin
0 votes
1 answer 15.6k views
...