CAS-001 · Question #74
During user acceptance testing, the security administrator believes to have discovered an issue in the login prompt of the company's financial system. While entering the username and password, the…
The correct answer is D. The administrator should run an online fuzzer against the login screen. The crash occurred when a field was mistyped - meaning unexpected or malformed input caused the application to fail (likely a buffer overflow or unhandled input condition). Fuzzing is the technique of systematically feeding unexpected, random, or boundary-condition inputs into…
Question
During user acceptance testing, the security administrator believes to have discovered an issue in the login prompt of the company's financial system. While entering the username and password, the program crashed and displayed the system command prompt. The security administrator believes that one of the fields may have been mistyped and wants to reproduce the issue to report it to the software developers. Which of the following should the administrator use to reproduce the issue?
Options
- AThe administrator should enter a username and use an offline password cracker in brute force mode.
- BThe administrator should use a network analyzer to determine which packet caused the system to
- CThe administrator should extract the password file and run an online password cracker in brute force
- DThe administrator should run an online fuzzer against the login screen.
How the community answered
(40 responses)- A3% (1)
- B3% (1)
- C5% (2)
- D90% (36)
Explanation
The crash occurred when a field was mistyped - meaning unexpected or malformed input caused the application to fail (likely a buffer overflow or unhandled input condition). Fuzzing is the technique of systematically feeding unexpected, random, or boundary-condition inputs into an application to trigger crashes and uncover input validation flaws. An online fuzzer targeting the login screen will reproduce the crash by replicating the class of malformed input that originally caused it. The other options (offline password crackers, network analyzers, password file extraction) are authentication-focused tools that address credential attacks, not application crash reproduction.
Topics
Community Discussion
No community discussion yet for this question.