使网页上的漫游器的电子邮件地址安全吗? [英] Making email addresses safe from bots on a webpage?

查看:136
本文介绍了使网页上的漫游器的电子邮件地址安全吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在网页上放置电子邮件地址时,您将其放置为如下文字:

When placing email addresses on a webpage do you place them as text like this:

joe.somebody@company.com

或使用一个聪明的伎俩尝试愚弄电子邮件地址收割机机器人?例如:

or use a clever trick to try and fool the email address harvester bots? For example:

HTML转义字符

joe.somebody@company.com

Javascript解密:

function XOR_Crypt(EmailAddress)
{
    Result = new String();
    for (var i = 0; i < EmailAddress.length; i++)
    {
        Result += String.fromCharCode(EmailAddress.charCodeAt(i) ^ 128);
    }
    document.write(Result);
}

XOR_Crypt("êïå®óïíåâïäùÀãïíðáîù®ãïí");

人类解码

joe.somebodyNOSPAM@company.com

joe.somebody AT company.com

您使用什么或甚至打扰?

What do you use or do you even bother?

推荐答案

一般不打扰我曾经在邮件列表中,每天都有几千个垃圾邮件。我们的垃圾邮件过滤器(spamassassin)每天可能会有1到2个。过滤器这个好,为什么合法的人难以联系你?

I generally don't bother. I used to be on a mailing list that got several thousand spams every day. Our spam filter (spamassassin) let maybe 1 or 2 a day through. With filters this good, why make it difficult for legitimate people to contact you?

这篇关于使网页上的漫游器的电子邮件地址安全吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆