HTTPS(HTTP + SSL)中的查询字符串参数安全吗?

发布于 2024-08-29 05:06:31 字数 38 浏览 3 评论 0原文

与请求一起发送时,查询字符串参数是否会在 HTTPS 中加密?

Do querystring parameters get encrypted in HTTPS when sent with a request?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

难忘№最初的完美 2024-09-05 05:06:32

使用 HTTPS 时,整个传输(包括查询字符串、整个 URL、甚至请求类型(GET、POST 等))都会被加密。

The entire transmission, including the query string, the whole URL, and even the type of request (GET, POST, etc.) is encrypted when using HTTPS.

独享拥抱 2024-09-05 05:06:32

我不同意这里给出的建议 - 即使已接受答案的参考也得出结论:

您当然可以将查询字符串参数与 HTTPS 结合使用,但不要将它们用于任何用途
这可能会带来安全问题。例如,您可以安全地使用它们来识别
零件号或显示类型,例如“accountview”或“printpage”,但不要将它们用于
密码、信用卡号或其他不应公开的信息
可用。

所以,不,他们并不真正安全......!

I disagree with the advice given here - even the reference for the accepted answer concludes:

You can of course use query string parameters with HTTPS, but don’t use them for anything
that could present a security problem. For example, you could safely use them to identity
part numbers or types of display like ‘accountview’ or ‘printpage’, but don’t use them for
passwords, credit card numbers or other pieces of information that should not be publicly
available.

So, no they aren't really safe...!

明媚殇 2024-09-05 05:06:31

是的。查询字符串也使用 SSL 加密。尽管如此,正如这篇文章 表明,在 URL 中放入敏感信息并不是一个好主意。例如:

URL 存储在网络服务器日志中 -
通常是每个的完整 URL
请求存储在服务器日志中。
这意味着任何敏感数据
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

好久不见√ 2024-09-05 05:06:31

请记住,SSL/TLS 在传输层运行,因此所有加密内容都发生在应用层 HTTP 内容下。

http://en.wikipedia.org/wiki/File:IP_stack_connections.svg

这是很长的路要走”说:“是的!

remember, SSL/TLS operates at the Transport Layer, so all the crypto goo happens under the application-layer HTTP stuff.

http://en.wikipedia.org/wiki/File:IP_stack_connections.svg

that's the long way of saying, "Yes!"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文