A security analyst inspecting a Security Information and Event Management (SIEM) console reviews the following web server log snippet:
`10.0.4.15 - - [27/Jul/2026:14:15:33 +0000] "GET /cgi-bin/status.sh?cmd=cat%20/etc/passwd HTTP/1.1" 200 1420`
Which of the following cyber attack vectors is directly indicated by this log entry?
- Command injectionAnswer
- BCross-site scripting (XSS)
- CSQL injection
- DBroken authentication
Answer
The command injection option is the correct answer.
The correct answer is Command injection because the log entry shows the parameter `cmd=cat%20/etc/passwd`, where `%20` represents a space. This attempts to invoke an operating system command (`cat /etc/passwd`) on the backend web server via a CGI script.
Step-by-Step Solution
Key Concept
Identifying web application attack indicators in SIEM access logs