Topic awaiting preservation: Email Address Obfuscation/Spambot Honeypot (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: North Coast of America |
posted 08-13-2003 22:58
Recently a local competitor emailed one of my clients critcizing the email address obfuscation techniques I employ on their web site (the Hivelogic Enkoder 5.1). She suggested that substituting a unicode character entity for a single character in the domain name is safe, effective and does not require the visitor to have javascript enabled. I disagree on all points but the javascript. |
Maniac (V) Mad Scientist From: Belgrade, Serbia |
posted 08-13-2003 23:14
Spambots are much smarter nowadays. Replacing characters with HTML entities won't stop "modern" spambots from indexing the address. Also, replacing "@" and "." with textual representations "at" and "dot" (or variations like "[at]" and "[dot]") won't stop some spambots either. So, the more you obfuscate the address, the better. |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 08-13-2003 23:46
My web page ( http://www.slimeland.com/ ) uses a combination of JavaScript, character entities, and string concatenation with predefined variables to construct my email address. It's kept out spam for at least a year now. |
Paranoid (IV) Inmate From: North Coast of America |
posted 08-14-2003 01:49
mr.maX: I agree that the primitive methods are probably broken and that other methods will have a limited lifespan. It's a matter of how much work they want to put into the effort and when they do it. |
Paranoid (IV) Inmate From: Den Haag, Netherlands |
posted 08-14-2003 16:14
I just use a PHP mailer form using an ldap directory lookup to provide the e-mail address - that way there are no e-mail addresses to see, and certainly no "mailto" |
Maniac (V) Mad Scientist From: :morF |
posted 08-14-2003 21:23
Unfortunatley that kind of form leaves you open to a different kind of spam...there are spambots out there that instead of spamming email addresses will find sites with firms just like that and keep filling them in, over and over, sending mountains of spam to your address, and the beauty is it totaly bypasses your spam filters becuase it is coming from your own domain's email address. |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 08-14-2003 22:54
Yes, but forms on a web page can be removed, so that's stoppable. In addition, you could modify the script that handles the form to do your own spam filtering (if you felt up to the challenge). On the other hand, you can't do anything about your email address being on someone else's spam list. |