Are HTTPS URLs encrypted?

前端 未结 14 1913
无人共我
无人共我 2020-11-22 04:26

Are all URLs encrypted when using TLS/SSL (HTTPS) encryption? I would like to know because I want all URL data to be hidden when using TLS/SSL (HTTPS).

If TLS/SSL gi

14条回答
  •  遥遥无期
    2020-11-22 04:48

    Yes and no.

    The server address portion is NOT encrypted since it is used to set up the connection.

    This may change in future with encrypted SNI and DNS but as of 2018 both technologies are not commonly in use.

    The path, query string etc. are encrypted.

    Note for GET requests the user will still be able to cut and paste the URL out of the location bar, and you will probably not want to put confidential information in there that can be seen by anyone looking at the screen.

提交回复
热议问题