pf » Another Trick for Avoiding Email Harvesters

Another Trick for Avoiding Email Harvesters

web

Most people know that spammers have robots that surf the net looking for email addresses, such programs are called email harvesters. Many people try to use JavaScript to trick these harvesters, but another technique that you can use, is by creating a link that redirects to a mailto:you@address address. You can do this with services like shurl.org or tinyurl.com. Here's an example of such a link: http://shurl.org/email_pete

Note that just like the javascript solutions its still possible that the harvesters will get your address, if they try to follow the link, and can detect this technique. The best solution is to just create a form and send the email with your web application server. Not everyone has that luxury however.



Related Entries
6 people found this page useful, what do you think?

Trackback Address: 279/E4A698291F8CB5EF683A6522ED447D5E
On 03/20/2005 at 3:43:18 PM MST Erki Esken wrote:
1
What I've found working really well is escaping email address using URL-encoding and HTML-escaping.

So me@example.com would become this for use in href attribute (lets see if it shows correctly):

mailto:%6d%65%40%65%78%61%6d%70%6c%65%2e%63%6f%6d

And HTML-escaped for using as link name:

me@example.com

So first is every email character URLescaped (you have to loop over characters and do FormatBaseN(Asc(char),16) in CF for example), and HTMLescaped with ampersand, hash, and character Asc() value.

Browsers display it properly, but my hope is harvesters won't understand it.

On 03/20/2005 at 4:09:28 PM MST Pedro wrote:
2
Not sure if it fools the email harvesters anymore, but there is a UDF available to do the HTML escaped email link http://cflib.org/udf.cfm?ID=405

On 09/11/2005 at 5:46:10 AM MDT bonnie gardner wrote:
3
remove

On 10/22/2005 at 7:19:57 AM MDT Xombie wrote:
4
I also use sites like http://www.ki7.us, they provide a quicker and more dsiposable short URL service to hide emails.




  



Spell Checker by Foundeo





Subscribe to my RSS Feed: solosub RSS
Tags