PDA

View Full Version : How to prevent spambot from detecting emails from forms




gm1234
Oct 15, 2004, 05:51 AM
People shift from providing email addresses to using forms (for contact) in order to avoid spam

bots. But there are some new spam bots today which can detect email address even through forms

present on a website. Any solution to prevent this?

generally the form action is as follows

<form action="xyz@xyz.com">

Any other way this can be written to prevent it from being detected by spam bots?



tomf87
Oct 15, 2004, 07:01 AM
How about writing the action tag to a CGI/PHP/Perl script that does the job for you?

Poff
Oct 15, 2004, 05:24 PM
How about writing the action tag to a CGI/PHP/Perl script that does the job for you?

probably the easiest solution. I think you can find some free cgi-scripts if you google a bit..

try this:
http://www.scriptarchive.com/formmail.html

or look here:
http://www.google.com/search?q=cgi+mail+form&ie=UTF-8&oe=UTF-8

jeremy.king
Oct 15, 2004, 05:52 PM
Easy, Don't expose emails ANYWHERE in your source.

Rower_CPU
Oct 15, 2004, 11:26 PM
Here's a decent javascript tool for obscuring emails:
http://automaticlabs.com/products/enkoderform/

zimv20
Oct 16, 2004, 12:24 AM
Here's a decent javascript tool for obscuring emails:
http://automaticlabs.com/products/enkoderform/
aside from making my otherwise anally-neat php file a complete mess, it's awesome!

thanks for the tip.