Pooled IP access question

Cantor, Scott cantor.2 at osu.edu
Tue Apr 1 17:10:22 EDT 2014


On 4/1/14, 4:49 PM, "Mike Flynn" <shibbolethlynda at yahoo.com> wrote:

>I have a client whose IP address changes between requests.  I have been
>using my test system to let them work out their details.  I added
>consistentAddress="false" to my session stanza to allow them to test like
>this.  My question is, what is the security risk by allowing this?

An HTTP session cookie has no protection other than secrecy and address
binding, so you're removing the second and anybody with the right cookie
value is able to impersonate the session. Since browsers are riddled with
security holes around same-origin policies, that basically means if
somebody wants to steal the session, they probably can if they control a
site the user visits.

You can mitigate this slightly by making sure you use HttpOnly as a cookie
property, which is automatic in newer SP versions, but not in yours.

>Does it facilitate man in the middle attacks?

Among other kinds, yes.

-- Scott




More information about the users mailing list