1

I commonly hear that since Google employs SSL for their search page, it hides your search queries. But the query is also kept in the URL eg.

https://www.google.com/search?q=stackoverflow

and since SSL does not have the capabilities for masking the URL, the query is visible to anyone sniffing the network.

Am I correct that the search queries on Google are not hidden due to SSL?

Mike Samuel
  • 118,113
  • 30
  • 216
  • 245
Chris Ryder
  • 133
  • 1
  • 6

1 Answers1

1

No, URLs cannot be seen by network sniffers (as long as SSL is being used). They are first translated into IPs by the client then sent through the network, returning the result back to the client. You can see how it works here.

tjhorner
  • 351
  • 2
  • 16