Session Hijacking Flashcards
What is Session Management?
A fundamental security component that enables web applications to identify a user
What are Cookies?
Allow web applications to retain information about the user
What are Session Cookies?
These reside in memory
When your done and close out the browser, the cookie is then deleted
What are Persistent Cookies?
These cookies are stored in the browser cache until they’re deleted by the user when you do the clearing your cookies or when they pass a defined expiration date.
What is Session Hijacking?
A type of spoofing attack where the host is disconnected and replaced by the attacker
What is Session Prediction?
An attacker attempts to predict the session token to hijack the session
What is Cookie Poisoning?
Modifying the contents of a cookie to be sent to a clients browser and exploits the vulnerabilities in an application
How do you counter Cookie Poisoning?
you want to make sure you validate the input of your web app to account for any tampered-with cookies.