I'm looking at a web application with a Response.Redirect between two Https pages. I would assume normally that the query string parameters aren't visible for https requests because of the secure connection. However, since the Response.Redirect sends back the 302 - Object Moved response in between the two pages along with query string variables, I'm worried that this message is not encrypted at all.
I have looked at the data with HttpAnalyzer but I believe it unecrypts Https traffic automatically. Do I have the wrong idea about how Https requests work in general? If anyone has any advice on how to proceed with this, I'd appreciate it.