简体   繁体   中英

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

I just want to know if all I have to do to ensure security is send from https to https.

这是安全的吗??

https secures only the connection from the user to the server. 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 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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM