HTTPS - is URL string itself secure??
-
I navigate to my bank's website, e.g., http://www.company.com. The homepage begins to load, and the URL reads: https://www.company.com. I then enter my username and password into the homepage, to log in to my account. The URL then reads as follows: https://login.company.com/Login/Init?UID=123456789&PIN=98765&Submit=Log+In Question: In this case, is my UserID and Password readable in transit by a third party (i.e., is the URL string itself encrypted -- or is it sent over the internet as plaintext)? [Please also provide corroboration in the form of link(s) to reasonably plain-English explanations on the web.] Thanks!
-
Answer:
Hi, HTTPS Establishes an underlying SSL conenction before any HTTP data is transferred. This ensures that all URL data (with the exception of hostname, which is used to establish the connection) is carried solely within this encrypted connection and is protected from man-in-the-middle attacks in the same way that any HTTPS data is. All HTTP-level transactions within an HTTPS connection are conducted within the established SSL session, and no query data is transferred before the secure connection is established. From the outside the only data that is visible to the world it the hostname and port you are connecting to. Everything else is simply a stream of binary data which is enctypted using a private key shared only between you and the server. In the example you provide your browser would do this: 1) Derive hostname (and port if present) from from URL. 2) Connect with to host. 3) Check certificate (it must be 'signed' by known authority, apply specifically to correct IP address and port, and be current). 4) The browser and server exchange cryptographic data and the browser receives a private key. 5) The HTTP request is made, encrypted with established cryptography. 6) HTTP response is received. Also encrypted. HTTP is an 'Application Layer' protocol, it is carried on top of the secure layer. According the SSL specification, drawn up by Netscape, dictates that no application layer data may be transmitted until a secure connection is established - as outlined in the following paragraph: "At this point, a change cipher spec message is sent by the client, and the client copies the pending Cipher Spec into the current Cipher Spec. The client then immediately sends the finished message under the new algorithms, keys, and secrets. In response, the server will send its own change cipher spec message, transfer the pending to the current Cipher Spec, and send its finished message under the new Cipher Spec. At this point, the handshake is complete and the client and server may begin to exchange application layer data." http://wp.netscape.com/eng/ssl3/draft302.txt So yes. The data contained in the URL query on an HTTPS connection is encrypted. However it is very poor practice to include such sensitive data as a password in the a 'GET' request. While it cannot be intercepted, the data would be logged in plaintext serverlogs on the receiving HTTPS server, and quite possibly also in browser history. It is probably also available to browser plugins and possibly even other applications on the client computer. At most an HTTPS URL could be reasonably allowed to include a session ID or similar non-reusable variable. It should NEVER contain static authentication tokens. The HTTP connection concept is most clearly explained here: http://www.ourshop.com/resources/ssl_step1.html
rnd13-ga at Google Answers Visit the source
Related Q & A:
- How Secure Is My Password?Best solution by Information Security
- Can i use Shamir's secret sharing scheme for multiplicative homomorphism for secure multiparty computation?Best solution by Cryptography
- How to disable HTTPS for a domain that shares IP with another domain that is under HTTPS?Best solution by Server Fault
- How to see if one string contains another string?Best solution by Stack Overflow
- What does URL mean when I am asked for the URL while reporting abuse yahoo?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.