Solved! Go to Solution.
Thank you - that is a very helpful idea!
I have this setup as described but it doesn't catch any bots at all since its been live - are there specific settings I need to make sure are setup on the form?
The concept is very easily foiled, since <INPUT type="hidden"> can be readily detected by a spambot and skipped over. You'd have better luck (but it's still just luck) having a standard <INPUT type="text">, but hiding it via CSS instead. Other approaches using JavaScript to dynamically assemble the form post can make it harder still for a bot to detect the legit parameters for posting. Still, you're relying on laziness and luck, since short of a robust captcha/recaptcha, a machine could learn how to post a legit-looking form.
Hi Sanford,
I just followed you as well. I'm interested in learning about how you implemented recaptcha.
Regards,
Chris
Here's the client-side part: MktoForms2 :: reCAPTCHA
On the server side, of course, you need to check the verification using a webhook. Configure it like this:
It looks like I'll have to get my developers to add the JS to the page(s) where the forms live, right? Or did you include all of the java/CSS within a rich text field?