DonationCoder.com Forum

Main Area and Open Discussion => Living Room => Topic started by: Renegade on December 31, 2012, 11:12 PM

Title: Obfuscating Email Addresses
Post by: Renegade on December 31, 2012, 11:12 PM
I came across an excellent post on obfuscating email addresses:

http://superuser.com/questions/235937/does-e-mail-address-obfuscation-actually-work/235965#235965

CSS Codedirection 0 MB
<span style="unicode-bidi:bidi-override; direction: rtl;">
moc.elpmaxe@zyx
</span>

CSS display:none 0 MB
xyz<span style="display:none">foo</span>@example.com

ROT13 Encryption 0 MB
[email protected]

It's kind of not really good for "General Software", but I didn't want to squirrel it away in the Developers Forum where fewer people would see it. It's all pretty simple stuff, and I think most people could use it.

I wrote a utility to do that kind of thing a long time ago:

http://renegademinds.com/Products/EmailProtector/tabid/68/Default.aspx

The methods there aren't all in the article, so I don't know how effective it still is, but my gut tells me that some of them are still very strong. (Due to the massive CPU requirements for some of them.)

Anyways, there's more there at the link above.