简体   繁体   English

只要您从HTTPS页面发送数据,数据是否安全? 我仍然可以在chrome的网络devoloper工具中看到表单数据

[英]Is data secure as long as you send it from/to an HTTPS page? I can still see form data in chrome's network devoloper tools

The form was sent from https://www.numbersgate.com/batchpixel/signUp.php 该表格是从https://www.numbersgate.com/batchpixel/signUp.php发送的

I just want to know if all I have to do to ensure security is send from https to https. 我只想知道我是否需要做些什么来确保安全性从https发送到https。

这是安全的吗??

https secures only the connection from the user to the server. https仅保护从用户到服务器的连接。 Once they are at the server they are no longer protected by https against attacks, so you have to find others ways to protect them there. 一旦他们在服务器上,他们就不再受https的攻击保护,所以你必须找到其他方法来保护他们。 https will also not protect the data from against attacks against the logic of the web application, like CSRF, XSS, clickjacking etc. In short: https is just one part to secure the data, there is much more. https也不会保护数据免受Web应用程序逻辑的攻击,如CSRF,XSS,clickjacking等。简而言之:https只是保护数据的一部分,还有更多。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 有没有办法通过 Python 加载网页的网络活动(您可以在 Chrome Dev Tools 上看到)? - Is there a way to get a webpage's Network activity (which you can see on Chrome Dev Tools) on load via Python? 我怎样才能将表单数据作为邮件发送并仍然提交 - How can i Send form data as mail and still submit 可以在 Mozilla 中查看表单中的 JSON 数据,但不能在 Chrome 中查看吗? - Can see JSON data in a form in Mozilla but not in Chrome? 从页面发送数据到chrome扩展程序 - Send data from page to chrome extension 您可以访问 Chrome 开发者网络标签数据吗? - Can you access the Chrome Developer network tab data? 如何将数据从chrome扩展发送到localhost? - How can i send data from chrome extension to localhost? 有没有办法可以将数据从注册表单发送到另一个 HTML 页面? - Is there a way that I can send data from Sign-Up Form to another HTML Page? 如何从JSP页面的表单向Servlet发送数据onclick? - How can I send data onclick from form in jsp page to servlet? 如何使用 Chrome 的开发人员工具查看 window 对象中定义了哪些变量? - How can I see what variables are defined in the window object with Chrome's developer tools? 如何将数据发送到Chrome扩展程序? - How can I send data to Chrome extension?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM