Email addresses inside URL

筅森魡賤 提交于 2019-12-04 02:49:06

问题


Is it safe to use e-mail addresses inside URLs? I mean lets say a web-application has a registered user "Bob" and Bob has been registered by using his email => Bob@hisemail.com. Now what's your opinion, is it safe for the application to accept and work with GET requests on //application.com/Bob@hisemail.com and the same kind of URLs for every user?


回答1:


Basically it depends on if you love or hate your users. When you do what you suggest, these URLs will spread on HTML pages on the web. Not necessarily confined to your own site, because people may link to it.

When your page gains enough traction to become important, crawler authors for spam bots will notice and add rules to their crawlers to extract the email address from URLs. It might even not be necessary, because some dumb regexes might already find the email without adaption.

Then, your users' email addresses will land on spammers' lists and get "unwanted adverts", euphemistically speaking. (These email lists will be rather high-valued, too, because they are "verified" to be real, existing ones.)

What you're doing here is giving away a private bit of identification your users trusted you with. Never ever allow that to be in public, unless your users told you so!

From a technical perspective, you can just go for it.




回答2:


I think that this is not a good idea. Firstly, email contains special chars that needs to be URL encoded so they don't get mixed up with system characters (for example, for FTP servers you can pass username like this ftp://user:pass@test.com).

Also, I would not like it from user perspective as in this case my e-mail would stay in browsers history.




回答3:


It depends.

Although common email addresses are not very problematic an email address may potentially contain characters such as backslash \ and quotation mark "[1]

abc."defghi\\\".xyz@example.com or "abcdefghixyz"@example.com are valid email addresses.

As long as you are properly validing and santizing input before using it for example to look up an entity from a db your application will be safe.

You are also outing the users email address to the word, potentially putting it into the hands of spammers.

Another issue is that if your user changes their email address then the entity becomes unreachable.

A better approach is using a unique index perhaps in combination with a username.




回答4:


In this case, the email address can be used with request parameter as GET Method, e.g:

// application.com/file_name?email=Bob@hisemail.com

This option is more safety and probably used.



来源:https://stackoverflow.com/questions/20400250/email-addresses-inside-url

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!