Hi everyone,
I have a form that asks for a users name, email & any comments.
I have included a “Are you Human” question i.e. 5 + 2 =
Name is set to input type “text”.
Email is input type “email”.
Comment is input type “text”.
Are you Human is currently not set but it could be set to number and a range of 1 - 10 for example.
What is 5+2?<input name=“human” type=“number” min=“1” max=“10”>
My Question relates to spam bots. How intelligent are they these days?
If I set the “Are you Human” input type to number and a range, am I making it extra easy for the spam bot?
Can they process the information I have provided?
If I don’t narrow down the type and range, a human will still understand the question.
However, would it be more difficult for the spam bot?
Would they fill the field with text or something else for example?
BTW, I have included both client and server-side validation for this question field.
Thanks for any help / insights.
Andy