A SOC analyst reviews the following web server access log entry presented in a Security Information and Event Management (SIEM) console:
10.0.0.15 - - [27/Jul/2026:11:05:14 +0000] "GET /products.php?id=1%20OR%201=1 HTTP/1.1" 200 452
Which type of attack vector is indicated by this log entry?
- SQL injectionAnswer
- BCross-Site Scripting (XSS)
- CBroken authorization control
- DDeterrent control failure
Answer
SQL injection
The payload `1 OR 1=1` appended to the parameter string in the HTTP GET request is designed to manipulate SQL statements executed by the database backend, making SQL injection the correct attack vector.
Step-by-Step Solution
Key Concept
Identifying SQL Injection Indicators in SIEM Web Server Logs