从http页面向https服务器请求json资源

发布于 2025-01-07 00:39:58 字数 328 浏览 0 评论 0原文

从 http 页面上的用户(由浏览器发出)到 https 服务器的 jsonp 请求是否可以被认为是安全的?

例如:

用户位于:

http://www.example.net

在该页面上有一个表单,提交时,会发送 jsonp 请求至:

https://secureapi.net

提交表单上的信息可以解读为api服务器是否在http上?

Can a jsonp request from a user on an http page (made by the browser) to an https server be considered secure?

For example:

The user is on:

http://www.example.net

On that page there's a form that, on submit, is sends a jsonp request to:

https://secureapi.net

Can the information on the submit form be read as if the api server is on http?

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

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

发布评论

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

评论(2

东走西顾 2025-01-14 00:39:58

不会。虽然无法在传输中嗅探数据,但触发请求的 HTTP 页面很容易受到中间人攻击的更改。 JS 可能会被注入,然后泄漏通过 HTTPS 检索到的数据。

No. While the data can't be sniffed in-flight, the HTTP page triggering the request is vulnerable to alteration by man-in-the-middle attacks. JS could be injected which can then leak the data retrieved via HTTPS.

知足的幸福 2025-01-14 00:39:58

是的,只要您将加密的数据发送到其他页面并解密另一个页面上的信息,它就是安全的

ys it is secure provided U send encrypted data to other page and decrypt the info on another page

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