Are security concerns sending a password using a GET request over https valid?

前端 未结 5 706
萌比男神i
萌比男神i 2020-12-05 04:58

We have webpage which uses the sapui5-framework to build a spa. The communication between the browser and the server uses https. The interaction to log into the page is the

5条回答
  •  南方客
    南方客 (楼主)
    2020-12-05 05:38

    Sending any kind of sensitive data over GET is dangerous, even if it is HTTPS. These data might end up in log files at the server and will be included in the Referer header in links to or includes from other sides. They will also be saved in the history of the browser so an attacker might try to guess and verify the original contents of the link with an attack against the history.

    Apart from that you better ask that kind of questions at security.stackexchange.com.

提交回复
热议问题