GPEN · Question #122
Which of the following statements are true about session hijacking? Each correct answer represents a complete solution. Choose all that apply.
The correct answer is A. TCP session hijacking is when a hacker takes over a TCP session between two machines. B. It is the exploitation of a valid computer session to gain unauthorized access to information or C. Use of a long random number or string as the session key reduces session hijacking.. Session hijacking is the takeover of an active authenticated session, and strong random session tokens are a primary mitigation against it.
Question
Which of the following statements are true about session hijacking? Each correct answer represents a complete solution. Choose all that apply.
Options
- ATCP session hijacking is when a hacker takes over a TCP session between two machines.
- BIt is the exploitation of a valid computer session to gain unauthorized access to information or
- CUse of a long random number or string as the session key reduces session hijacking.
- DIt is used to slow the working of victim's network resources.
How the community answered
(29 responses)- A72% (21)
- D28% (8)
Why each option
Session hijacking is the takeover of an active authenticated session, and strong random session tokens are a primary mitigation against it.
TCP session hijacking is technically defined as an attacker seizing control of an established TCP session between two communicating hosts, often by predicting sequence numbers.
By definition, session hijacking exploits an already-authenticated, valid computer session to gain unauthorized access to information or services without needing to re-authenticate.
A long, cryptographically random session key is computationally infeasible to predict or brute-force, which directly defeats session token prediction attacks used in hijacking.
Slowing or exhausting a victim's network resources describes a Denial-of-Service (DoS) attack, which is a distinct attack category unrelated to session hijacking.
Concept tested: Session hijacking definition and mitigation techniques
Source: https://owasp.org/www-community/attacks/Session_hijacking_attack
Topics
Community Discussion
No community discussion yet for this question.