Is it safe to use email encoders? Or how to safely display an email address?

Services like: http://www.wbwip.com/wbw/emailencoder.html encode email in ASCII. Is it absolutely safe? Can a spammer copy this code and decode it?

Can they decode it, since it is safe to display their email on a website? Perhaps putting it on the image?

+5
source share
7 answers

No, this is not at all safe. You are still exposing your email address on the page. Some dumb spiders end up embarrassed, but those that are up to date can definitely "decode" these objects quickly. The only solution is ... not to publish the email address at all. If you use a contact form with recipients to be selected by users, use identifiers and look for them in your code. If you need to show the image of the email - to show, but if someone wants you to contact their spam database, then he can always put it manually.

+2
source

The short answer is no, it is not fully protected, as it can be easily decoded by someone.

+1
source
+1

- "" .

- ( john.doe@gmail.com):

john (dot) doe (at) gmail (dot) com

, , , .

, 100% . OCR, .

, , . , .

+1

- . , , , . , /, .

+1

, . , . , , , .

+1

Of course, this form of email encoding is very weak in terms of security; in fact, it is not intended for security purposes at all. This is encoding, not encryption.

0
source

All Articles