Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider the URL: https://foo:password@example.com

Does the username/password portion in the above example qualify as a "URL parameter", as defined in this question?

share|improve this question

2 Answers

up vote 0 down vote accepted
http://mydomain.com/login.php?user=me&pass=pass

here user and pass count as url parameters.

In your case they make up for the URL.

But as discussed in that question the effects would be the same. They could show up in your logs etc..

share|improve this answer
So in the example that I gave, where the username and password come before the domain, the same security concerns apply (i.e. that they can show up in history and logs). Correct? – normalocity Feb 12 '11 at 22:14
@normalocity: Some logging functions omit the username and password when presented like this, but I wouldn't bet too much on this assumption. – Piskvor Feb 12 '11 at 22:20
You should never transfer passwords in GET requests, as those will turn up in logs, which is something you should try to avoid at all costs. – Holger Just Feb 12 '11 at 23:27

When you put the username and password in front of the host, this data is not send that way to the server. It is instead transformed to a request header depending on the authentication schema used. Most of the time this is going to be basic auth, so the request will look something like this:

GET / HTTP/1.1
Host: example.com
Authorization: Basic Zm9vOnBhc3N3b3Jk

The hash like string you see there is created by the browser like this: base64_encode(username + ":" + password).

To outsiders of the HTTPS transfer, this information is hidden (as everything else on the HTTP level). You should take care of logging on the client and all intermediate servers though. The username will normally be shown in server logs, but the password won't. This is not guaranteed though. When you call that URL on the client with e.g. curl, the username and password will be clearly visible on the process list and might turn up in the bash history file.

When you use the approach by ayush, the username and password will always turn up in logs, caches, ... unless you specifically configure your servers to not log it. This only applies to servers being able to read the unencrypted http data, like your application server though.

Basic auth is standardized and implemented by browsers by showing this little username/password popup. When you put the username/passwort into GET or POST parameters, you have to implement all the login/logout logic yourself (which might be an advantage). But you should never transfer usernames and passwords by GET parameters. If you have to, use POST instead. The prevents the logging of this data by default.

Concluding I could say, that transfering data that way over HTTPS is save, as long as you take care that the password does not turn up in unexpected places. But that advice applies to every transfer of any password in any way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.