A security analyst is investigating a alert generated by a SIEM correlation engine. The console displays the following sequential log entries collected from an enterprise web server and host database:
2026-07-27 11:05:12 | Host: WEB-01 | Apache: 192.168.1.105 - - "POST /login.php HTTP/1.1" 200 4512 "username=admin' OR '1'='1"
2026-07-27 11:05:13 | Host: WEB-01 | Auth: Successful authentication for user 'admin' from 192.168.1.105
2026-07-27 11:05:18 | Host: DB-01 | MySQL: Query executed: SELECT * FROM users WHERE username='admin' OR '1'='1'
Based on these correlated log entries, which of the following best describes the attack vector being executed and its immediate impact?
- ACross-Site Scripting (XSS) executing malicious client-side scripts to hijack the active admin session.
- SQL injection (SQLi) resulting in an authentication bypass by manipulating the backend database query logic.Answer
- CA SIEM correlation rule misinterpretation that incorrectly combined unrelated legitimate administrative logins.
- DAn authorization control failure where database access permissions were incorrectly assigned to an unauthenticated identity.
Answer
SQL injection (SQLi) resulting in an authentication bypass by manipulating the backend database query logic.
The HTTP POST request contains the classic SQL injection payload 'OR '1'='1, which forces the database conditional check to evaluate as true. As a result, the backend application authenticates the request as the 'admin' user without verifying credentials, leading to an authentication bypass.
Step-by-Step Solution
Key Concept
SQL Injection (SQLi) Log Analysis