What is a Session Management?
Enables web applications to uniquely identify a user across a number of different actions and requests, while keeping the state of the data generated by the user and ensuring it is assigned to that user
What are Cookies?
Text file used to store information about a user when they visit a website
What are Session (Non-Persistent) cookies?
Reside in memory, and are deleted when the browser instance is closed
What are Persistent Cookies?
Cookies that are stored in the browser cache until they are deleted by the user or pass a defined expiration date
What is a Session Hijacking?
An attacker takes over an active session between a user and a system after the user has already authenticated (often by stealing cookies, tokens, or session IDs)
What are Session Prediction Attacks?
A type of spoofing attack where the attacker attempts to predict the session token to hijack a session
What is Cookie Poisoning?
An attacker modifies the contents of a cookie stored on a user’s device to gain unauthorized access or escalate privileges.