S
scottymo
My research to this point indicates that cookieless sessions have two
main drawbacks:
1.) Absolute paths cannot be used without a workaround for the session
id storage in the URL.
2.) A security hole is opened due to the visibility of the session id
in the URL.
Are there any other draw backs?
Number 2 is my main concern. To overcome the security risk with
cookieless sessions, couldn't I simply track the initial IP of the
client, and verify that against all requests? That way, if someone on
another box tried to spoof the session, I would be able to kick them
out due to the IP difference.
Thoughts? Other possible solutions to the security risk with cookieless
sessions?
main drawbacks:
1.) Absolute paths cannot be used without a workaround for the session
id storage in the URL.
2.) A security hole is opened due to the visibility of the session id
in the URL.
Are there any other draw backs?
Number 2 is my main concern. To overcome the security risk with
cookieless sessions, couldn't I simply track the initial IP of the
client, and verify that against all requests? That way, if someone on
another box tried to spoof the session, I would be able to kick them
out due to the IP difference.
Thoughts? Other possible solutions to the security risk with cookieless
sessions?