ユーザー A からの Cookie がサーバー側でユーザー B によって盗まれたかどうかを確認する方法はありますか?
たとえば、単純なハッシュ関数 (sha1 など) を使用して作成された Cookie トークン/データ
hash_of(user_agent,ip+proxy_ip,username,random_session_key)
where user_agent is browser's user agent,
ip is the client IP address,
proxy_ip is the proxy's IP address the client use,
username is the username the user currently login,
random_session_key is a random number saved to database when a user logged in
その Cookie が LAN 上の別の人によって盗まれて使用され、LAN がプロキシではなく NAT を使用しており、泥棒がまったく同じブラウザを使用していた (またはユーザー エージェントを偽装していた) 場合、サーバー側でどのように検出するかそれ?