有没有办法检查用户 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,并且小偷使用完全相同的浏览器(或欺骗用户代理),我们在服务器端如何检测那?