What problem does it solve? Session management flaws like fixation, missing invalidation on logout or password change, and weak refresh-token handling let attackers hijack accounts persistently, yet they are hard to prove without rigorous two-session testing and false-positive controls. ## Core Features & Use Cases - Fixation & Invalidation Testing: Verify session regeneration on login and invalidation on logout, password change, and email change using two real captured sessions (attacker A and victim B). - Token & Cookie Analysis: Audit session-ID entropy against NIST SP 800-63B, decode JWTs for missing exp/jti claims, test refresh-token rotation and reuse-detection, and check Secure/HttpOnly/SameSite/__Host- cookie attributes. - Use Case: During a bug bounty engagement, capture a victim test account's session, change its password from a second session, then replay the old cookie against /api/profile to prove a persistent account-takeover primitive with body-diff evidence. ## Quick Start Test whether the target application invalidates an old session after a password change by capturing two sessions with curl and replaying the first one.