Page 1 of 1

Minimising Form Builder form spam (without using captcha)

Posted: Sat May 11, 2013 12:54 am
by paulbaker
Client is getting hit every so often with Form Builder form spam, perhaps a handful a day (and then nothing for a while).

A typical example is attached.

I don't want to use captcha.

There is a very old thread about this but I wondered if anyone had any good ideas on how to minimise form spam?

(When hand coding PHP forms on non-CMSMS sites (what? ;D) I normally just disallow any submissions that include http:// (link) text which works well as most form spam includes a link).

Re: Minimising Form Builder form spam (without using captcha

Posted: Mon May 13, 2013 6:08 pm
by Jos
Since you only have a name, email and message field, you could try Gbook 8)

Re: Minimising Form Builder form spam (without using captcha

Posted: Mon May 13, 2013 6:36 pm
by Wishbone
paulbaker wrote:(When hand coding PHP forms on non-CMSMS sites (what? ;D) I normally just disallow any submissions that include http:// (link) text which works well as most form spam includes a link).
On a similar note, create a field called URL (spam-bots just can't resist :) ) and use jQuery to hide it (if you set it to hidden in CSS, it might be caught... dunno) ... Reject the form if you find anything in the field.

Re: Minimising Form Builder form spam (without using captcha

Posted: Mon May 13, 2013 6:39 pm
by Wishbone
A few more details on this technique:

http://forum.cmsmadesimple.org/viewtopi ... ct#p277766

Re: Minimising Form Builder form spam (without using captcha

Posted: Thu Jun 13, 2013 3:12 pm
by paulbaker
Jos, thanks but looks like Gbook is for displaying entries on the website - not what client needs - they need a form which results in an email to them.

Wishbone, thanks for posting the link to the other thread - I used that technique to add a new URL field and I have hidden it with CSS. FormBuilder rejects any submission where that URL field has anything in it using regex. All set up and working - let's hope it reduces the spam. ;D Thanks again.

Re: Minimising Form Builder form spam (without using captcha

Posted: Thu Jun 13, 2013 4:04 pm
by staartmees
I use a field that must have an exact value. e.g. write the sum of twelve and two in characters. Only when they write fourteen the form can be send.

Re: Minimising Form Builder form spam (without using captcha

Posted: Thu Oct 30, 2014 1:44 am
by paulbaker
paulbaker wrote:let's hope it reduces the spam.
It did.

For the record, I had a site generating 20 Form Builder spam messages per day. I installed this last week and haven't had even 1 spam message through. Perfect.

Re: Minimising Form Builder form spam (without using captcha

Posted: Thu Oct 30, 2014 12:44 pm
by velden
paulbaker wrote:For the record, I had a site generating 20 Form Builder spam messages per day. I installed this last week and haven't had even 1 spam message through. Perfect.
You did test it does send valid forms didn't you >:D

Re: Minimising Form Builder form spam (without using captcha

Posted: Thu Oct 30, 2014 1:00 pm
by paulbaker
Yes.

;)