Session Hijacking Flashcards

1
Q

What is Session Management?

A

A fundamental security component that enables web applications to identify a user

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are Cookies?

A

Allow web applications to retain information about the user

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are Session Cookies?

A

These reside in memory

When your done and close out the browser, the cookie is then deleted

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are Persistent Cookies?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is Session Hijacking?

A

A type of spoofing attack where the host is disconnected and replaced by the attacker

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is Session Prediction?

A

An attacker attempts to predict the session token to hijack the session

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is Cookie Poisoning?

A

Modifying the contents of a cookie to be sent to a clients browser and exploits the vulnerabilities in an application

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How do you counter Cookie Poisoning?

A

you want to make sure you validate the input of your web app to account for any tampered-with cookies.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly