How secure is sending sensitive data over https?

后端 未结 10 2184
一个人的身影
一个人的身影 2020-12-03 05:14

Is SSL secure enough for using sensitive data (like password) in query string? Is there any extra options to implement?

10条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-03 05:24

    SSL provides secure, transport-level security. Nobody between client and server should be able to read the information.

    But you should change your mind about writing sensitive data in the querystring. It will show up in the browser's history and is visible in the address bar of the browser and in logs on the server. See this article: How Secure Are Query Strings Over HTTPS?

    If using query strings is your only option (I doubt it), here is an interesting article about securing query strings.

提交回复
热议问题