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?
|
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? |
|||
|
|
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.. |
|||||||
|
|
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:
The hash like string you see there is created by the browser like this: 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. 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. |
|||
|
|