-4

If I use a link like this:

www.example.com/vjbvhagwi74g3577384hqujvbgp39843q9-8q24380gfbqp29-q2--2=08h49h24tt982uh3...

Will the infomation be safe?

Anders
  • 64,406
  • 24
  • 178
  • 215

1 Answers1

2

If you only access it over HTTPS, then TLS/SSL will protect the URL from eavesdroppers on the connection.

However, the secret URL can leak by other means. For example, if the page is HTML content and contains links or references to any external sources, then the URL will be leaked in the referer HTTP header.

Also, once the link is known it can be bookmarked, meaning there is no way to revoke access without changing the URL. If the link is posted anywhere else, it could also end up on search engines.

Finally, any directory browsing or path traversal vulnerabilities on your server could reveal the path.

SilverlightFox
  • 33,408
  • 6
  • 67
  • 178