Do querystring parameters get encrypted in HTTPS when sent with a request?
相关问题
- “Zero out” sensitive String data in Swift
- High cost encryption but less cost decryption
- Can ServiceStack JsonServiceClient send a get requ
- How to restrict VOB read access in ClearCase (Wind
- Is it possible to use HTTPS only for login in Spri
相关文章
- 请大神帮忙 post向https接口发送数据 部署到服务器为什么运行一会后就会报空指针
- Warning : HTML 1300 Navigation occured?
- Security concerns about CORS
- How do I prevent SQL injection with ColdFusion
- Node.JS Request - Invalid URI “/”
- Send a GET request with a body in JavaScript (XMLH
- LINQ to Entities and SQL Injection
- How to use Google application-specific password in
remember, SSL/TLS operates at the Transport Layer, so all the crypto goo happens under the application-layer HTTP stuff.
http://en.wikipedia.org/wiki/File:IP_stack_connections.svg
that's the long way of saying, "Yes!"
The entire transmission, including the query string, the whole URL, and even the type of request (GET, POST, etc.) is encrypted when using HTTPS.
Yes. The querystring is also encrypted with SSL. Nevertheless, as this article shows, it isn't a good idea to put sensitive information in the URL. For example:
I disagree with the advice given here - even the reference for the accepted answer concludes:
So, no they aren't really safe...!