I’ve been getting a steady stream of spam via my 2 grav website’s contact forms, despite all my efforts to stop it. This site has a honeypot field, a turnstyle captcha and a math problem.
So maybe the submissions were done by actual people not bots?
Except I got one the other day that was lacking the " What is 2 times three?: 6" field that I should see in any emails I receive from the form.
And the bastard was bragging about how good a spammer he is :" Message: This message got to you and I can help you get your ad message to millions of websites just like this."
classes: 'form-style form-surround'
cache_enable: false
title: Contact
form:
name: contact
action: /pushcart/_contact
fields:
name:
label: Name
placeholder: 'Enter your name'
autocomplete: 'on'
type: text
validate:
required: true
email:
label: Email
placeholder: 'Enter your email address'
type: email
validate:
required: true
message:
label: Message
placeholder: 'Enter your message'
type: textarea
rows: 6
validate:
required: true
honeypot:
type: honeypot
question:
type: radio
label: 'What is 2 times three?'
options:
sex: 24
drugs: 6
rock: 18
roll: 3
validate:
required: true
pattern: ^drugs$
message: nope
captcha:
type: turnstile
theme: light
buttons:
submit:
type: submit
value: Submit
reset:
type: reset
value: Reset
process:
turnstyle: true
save:
fileprefix: contact-
dateformat: Ymd-His-u
extension: txt
body: '{% include ''forms/data.txt.twig'' %}'
email:
subject: '[Site Contact Form] {{ form.value.name|e }}'
body: '{% include ''forms/data.html.twig'' %}'
message: 'Thank you for getting in touch!'
reset: true
display: thankyou
class: small