且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

查询字符串参数在HTTPS(HTTP + SSL)中是否安全?

更新时间:2023-11-30 22:37:28

是的。查询字符串也使用SSL加密。不过,正如这篇文章显示,将敏感信息放在URL中并不是一个好主意。例如:

Yes. The querystring is also encrypted with SSL. Nevertheless, as this article shows, it isn't a good idea to put sensitive information in the URL. For example:


网址存储在网络服务器日志中 -
通常存储每个
请求的整个网址在服务器日志中。
这意味着
中的任何敏感数据(例如密码)都是以明文形式保存在服务器上的

URLs are stored in web server logs - typically the whole URL of each request is stored in a server log. This means that any sensitive data in the URL (e.g. a password) is being saved in clear text on the server