从http页面向https服务器请求json资源
从 http 页面上的用户(由浏览器发出)到 https 服务器的 jsonp 请求是否可以被认为是安全的?
例如:
用户位于:
在该页面上有一个表单,提交时,会发送 jsonp 请求至:
提交表单上的信息可以解读为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:
On that page there's a form that, on submit, is sends a jsonp request to:
Can the information on the submit form be read as if the api server is on http?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不会。虽然无法在传输中嗅探数据,但触发请求的 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.
是的,只要您将加密的数据发送到其他页面并解密另一个页面上的信息,它就是安全的
ys it is secure provided U send encrypted data to other page and decrypt the info on another page