A Security Operations Center (SOC) analyst is investigating an automated SIEM alert triggered during incident response telemetry collection. The analyst reviews the following correlated chronological log snippet collected from an internal host (`host-app01`), a perimeter Web Application Firewall (`WAF-EDGE01`), and a backend database server (`db-prod01`):
[2026-07-27T14:10:02Z] host-app01 sshd[14201]: Failed password for root from 10.0.4.88 port 49152 ssh2
[2026-07-27T14:10:04Z] host-app01 sshd[14205]: Accepted password for svc_deploy from 10.0.4.88 port 49154 ssh2
[2026-07-27T14:12:30Z] WAF-EDGE01 action="ALERT_ONLY" src="10.0.4.88" uri="/db_admin.php?user=admin' OR '1'='1" signature="SQLi_Generic_Clause"
[2026-07-27T14:13:01Z] db-prod01 mariadb[882]: [Access Granted] User 'svc_deploy'@'10.0.4.88' executed query: "SELECT * FROM customer_pii;"
Based on the log telemetry above, which of the following security findings and incident conclusions are correct? (Select TWO.)
- The threat actor gained access by authenticating with valid service account credentials following a failed attempt to log in as root.Answer
- The compromised account was used to execute direct queries retrieving sensitive customer personally identifiable information (PII) from the database daemon.Answer
- CThe WAF log entry confirms that the attacker executed a client-side Cross-Site Scripting (XSS) payload targeting administrative web browser sessions.
- DThe SSH authentication failure for the root user indicates an authorization control enforcement failure rather than an identity verification check failure.