Is the URL fragment identifier sent to the server? [duplicate]
Asked Answered
H

1

22

Possible Duplicate:
Can PHP read the hash portion of the URL?

The (famous?) web site mega.co.nz uses a hash mark in URLs to link to encrypted files; the portion of the URL after the hash mark contains a password, and encryption is claimed to happen on the client side. It is certainly feasible to use javascript for client-side encryption but … isn't the URL sent to the server, thus revealing the password to the server itself?

The URL looks like

https://example.com/#!encryptedfilename_password
Horsey answered 22/1, 2013 at 15:35 Comment(0)
M
32

Fragment identifiers are not sent to the server. The hash fragment is used by the browser to link to elements within the same page.

Manipulator answered 22/1, 2013 at 15:42 Comment(1)
Thanks! Yes indeed it is in a sense a duplicate of #941405 , where it is also explained how to use javascript to read fragment identifierHorsey

© 2022 - 2024 — McMap. All rights reserved.