vote up 5 vote down star
1

Most people advice against rewriting every (internal) url to include the sessionId (both GET and POST).

The standard argument against it seems to be:
  If an attacker gets hold of the sessionId, they can hijack the session.
  With the sessionId in the url, it easily leaks to the attacker (by referer etc.)

But what if you put the sessionId in both an (encrypted) cookie and the url. if the sessionId in either the cookie or the url is missing or if they do not match, decline the request.

Let's pretend the website in question is free of xss holes, the cookie encryption is strong enough, etc. etc.

Then what is the increased risk of rewriting every url to include the sessionId?

UPDATE:
@Casper That is a very good point.

so up to now there are 2 reasons:

  • bad for search engines / SEO if used in public part of the website
  • can cause trouble when users post an url with a session Id on a forum, send it trough email or bookmark the page

apart from the:
  It increases the security risk, but it is not clear what the increased risk is.

some background info:
I've a website that offers blog-like service to travellers. I cannot be sure cookies work nor can I require cookies to work.

Most computers in internet cafes are old and not (even close to) up-to-date. The user has no control over them and the connection can be very unreliable for some more 'off the beaten path' locations.

Binding the session to an IP-address is not possible, some places use load-balancing proxies with multiple IP addresses. (and from China there is The Great Firewall).

Upon receiving the first cookie back, I flag cookies as mandatory. However, if the cookie was flagged as mandatory but not there, I ask for their password once more, knowing their session from the url.

(Also cookies have a 1 time token in them, but that's not the point of this question).

UPDATE 2:

The conclusion seems to be that there are no extra *security* issues when you
expose you session id trough the URL while also keeping a copy of the
session id in an encrypted cookie.

Do not hesitate to add additional information about any possible security implications

flag

closed question for now as this question has become a spam magnet somehow. Revisit later. – Jeff Atwood Oct 16 at 16:26

closed as no longer relevant by Jeff Atwood Oct 16 at 16:26

12 Answers

vote up 2 vote down check

Apart from the reasons above:

  • It's visible to anyone who can sniff the wire. (True for cookies too).
  • It's visible to anyone who can see the server logs.
  • It makes it easyer for attackers to brute force a valid session id: they can just try GETs with sequential numbers until they get interesting data coming back. This can be offset by using large, cryptographically random session ids.

  • If you use SSL then you remove the problem of people sniffing the wire.

  • On the other hand, what kind of app is it? For many apps, it doesn't really matter if someone hijacks a session.
link|flag
vote up -1 vote down

This questions will likely lead to a bunch of questions and people arguing with other people's opinions -- but I have to ask.. Why?

link|flag
vote up 1 vote down

People might copy/paste the link onto a message board or something. Also, the session ID would show up in the logs of any linked site.

link|flag
vote up 0 vote down

EDIT:

An alternative to a cookie would be a hidden field in your POST. But I don't see how you gan get around fit GET.

I'd include the user ip address and a timestamp in the cookie too, in order to prevent replay attacks.

Since our expecting changing ip addresses, no cookies and bad intention, your odds for a secure application seem pretty low to me.

SSL would solve most of your problems. Perhaps ask your user if she accepts a connection with low security if you can't set up a secure environment with that particular machine.

But why bother with the url if your read the cookie anyway?

link|flag
vote up 0 vote down

I don't think session IDs in urls are a big risk, but if your using sessions everywhere on your site, all your urls will look strange, and you have to think about the sessionId in every hyperlink. That's why (almost) nobody uses sessionIds in urls.

link|flag
vote up 2 vote down

If the SessionId is in the URL, it does not matter that it is also required in the cookie, once the attacker has it he can easily send it twice (URL and cookie). So the risk of sending the SessionId in the URL still exists, even if it is also in the cookie.

So what exactly IS the risk of sending the SessionId in the URL?

Well, as an item of sensitive data, and one that could potentially expose your application to spoofing attacks, you obviously dont want the SessionId exposed at any point to anyone other than the identified user.
Unfortunately, URLs are accessible in many places:

  • your browser's history (especially relevant in internet cafes, but not only)
  • your browser's cache (ditto)
  • Tab History in Firefox
  • any proxy on the way to the server
  • any firewall on the way to the server
  • Referer header to any other site you browsed to afterwards
  • Client script (if there is XSS)
  • etc.

Note that in many cases, using SSL/TLS wouldn't even help you here...

So, to echo some of the other posters, why bother?
Usually, using cookies shouldnt be a problem. If, however, you find that many of your clients are using cookie-less browsers, you can detect that and downgrade the security of their connection. Perhaps you would restrict their access when using an "unsecure" (not cookies) connection?

link|flag
How would they be able to forge an encrypted cookie without knowing the encryption key? – Jacco Dec 3 '08 at 16:24
well, in this case the attacker would not forge the cookie, but rather reuse the original, valid cookie which was exposed (through the above mechanisms) and thus may be stolen (by the attacker). – AviD Dec 18 '08 at 0:43
vote up 1 vote down

@Toxygene

"People might copy/paste the link onto a message board or something. Also, the session ID would show up in the logs of any linked site."

I can see the problem for the message board, but what is the problem with the sessionId in log files?

@ David G

"They can not accept cookies and keep trying different session IDs."

They could try random session Ids for that as well

"The most secure way to handle browsers that won't accept cookies is fore re-authentication, though this is obviously not user friendly."

This not acceptable in my case.

@AviD since the cookie is encrypted in a proper way, the attacker cannot forge a cookie.

your browser's history (especially relevant in internet cafes, but not only)
your browser's cache (ditto)
Tab History in Firefox

If the user did not log out/close the window the cookie is still present. So I do not see any difference

any proxy on the way to the server
any firewall on the way to the server

They also see the cookie as it passes the wire Except when I keep the entire session https.

Please note: I do not want to downplay all your arguments because I don't want to listen to them, I simply try to get a clear picture of the increased risk and I really appreciate the discussion.

link|flag
"If the user did not log out/close the window the cookie is still present. So I do not see any difference" - of course, for a secure system, the user would NEED to log out, and the system would have to support auto-logout (after certain amount of time of inactivity). – AviD Dec 18 '08 at 0:46
"They also see the cookie as it passes the wire Except when I keep the entire session https." - Again, for a secure system, I would assume you're running over encrypted SSL/TLS. Otherwise, it's trivially bypassable - e.g. stealing passwords over open Wifi... – AviD Dec 18 '08 at 0:48
vote up 1 vote down

Apart from all reasons already mentioned, another reason to NOT include sessionID's in your URLs is Google. GoogleBot might get a new sessionID everytime it visits your site. That way one page could be indexed several times resulting in really bad indexing, pagerank etc.

I've seen it happen on a site where 90% of the bandwith was consumed by GoogleBot...

link|flag
You'd set the session-id only after successful login – Oli Sep 27 '08 at 9:16
vote up 4 vote down

If your primary reason for adding the sessionid to the url is to allow access when cookies are disabled, you could instead use a token in a hidden formfield. A new token can be generated per page to prevent an attacker posting as another user. You would only really need this on a message post page and the user without cookies would just have to login each time they wanted to post. The rest of the site they browse anonymously. Users with cookies enabled can be logged in the whole time.

Session IDs in the URL are bad simply because people like to bookmark pages and copy and paste URLs and in those cases, you don't want to reuse session ID.

link|flag
People have to do more than just post messages. There are quite some things only available to logged in users, and it is not an option to have them provide their username/password every other request. another problem with one-time tokens is the multiple window browsing – Jacco Sep 26 '08 at 15:59
vote up 1 vote down

You could use HTTP-Authentication - the browsers saves that login-data and you do not need any cookie. The only restriction is that every user can login on only one computer.

link|flag
vote up 0 vote down

If your purpose is to make sure your application works when cookies are disabled, I don't see how your scheme of having the session id in the URL, and encrypted in a cookie, will work. You are either requiring cookies for the application to function fully, or accepting somewhat leakier URL-based ids.

If you want a graceful degradation so cookie-enabled users get full functionality without allowing their sessions to leak from the URL, you can emulate what Java application servers do. Attempt to set a Cookie, if this doesn't work put the id in the URL. You need a bit of extra logic to detect which type of session mechanism the current user is under, and limit what users can do in the second case.

link|flag
No, my purpose is to find out what the added security risk are. There seems to be little evidence for the claim. – Jacco Aug 25 at 9:04
vote up 0 vote down

AJAX is a simply method to use cookie-less sessions. But if clients don't support cookies they may also not support the javascript needed for ajax.

Web pages are addressed by standard URLS and return CSS, logo, non-secure menus, background, non-secure images, copyright notice, etc. The AJAX call contains the session-id in the AJAX url and any secure menus, images and data (page content) needed. This addresses bookmarking, posting and third-party web logs.

Google bots and other search engines should already be given their own rendition of the site, restricted to google (bing, yahoo, etc.) reverse DNS. This addresses googles problems with CGI pages. Pages can be sent with very low overhead, no images, css or javascript needed for search engines. Many large sites do this already. This addresses session urls in search engines.

Sessions on the server-side should always be tied to an IP and timestamped whenever possible. There are very few forwarding proxies that randomize the IP of a client page to page. In the case of clients sharing the same IP from a proxy. Any hijack of the AJAX session can just as easily hijack the cookie. If needed the AJAX session can be split into two AJAX calls, one HTTPS for the session and any "highly" secure data and the other HTTP for standard but session required data.

link|flag
I don't see how this answers the 'added security issues' question? Also, binding sessions to IP numbers is a bad idea, far to many people browse the web with multiple IPs (AOL users are/where a big issue here). – Jacco Sep 2 at 13:43

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