A security analyst reviews the following web server access log entry:
192.168.1.45 - - [27/Jul/2026:14:32:10 +0000] "GET /products.php?id=1%20UNION%20SELECT%20username,password%20FROM%20users-- HTTP/1.1" 200 4523
Which of the following attack types is indicated by this log entry?
- SQL Injection (SQLi)Answer
- BCross-Site Scripting (XSS)
- CBroken Authorization
- DRule Misconfiguration
Answer
SQL Injection (SQLi)
The option identifying SQL Injection (SQLi) is correct because the URL parameter contains explicit SQL command structures ('UNION SELECT') designed to query backend database tables.
Step-by-Step Solution
Key Concept
Identifying SQL Injection attack signatures in web access logs
Estimated Time:45s