A security administrator is reviewing the following web server access log entry captured by a SIEM collector:
`192.168.1.45 - - [27/Jul/2026:14:15:30 +0000] "GET /products.php?id=1%27%20OR%20%271%27=%271 HTTP/1.1" 200 4520`
Which type of attack vector does this log entry indicate?
- SQL InjectionAnswer
- BCross-Site Scripting (XSS)
- CBroken Authorization Control
- DSIEM Parsing Rule Failure
Answer
SQL Injection
The HTTP GET log entry includes `%27%20OR%20%271%27=%271`, which decodes to `' OR '1'='1`. This syntax attempts to force an SQL database query to evaluate to true, signifying a classic SQL injection attack.
Step-by-Step Solution
Key Concept
Identifying SQL Injection attack signatures in HTTP web server access logs
Estimated Time:45s