A Security Operations Center (SOC) analyst is investigating a cross-environment security alert in a SIEM console. The alert correlates web application server logs with cloud audit logs across a 5-minute timeframe:
Log Snippet 1 (Nginx Web Server Access Log):
`192.0.2.45 - - [27/Jul/2026:14:22:10 +0000] "GET /api/v1/fetch?url=http://169.254.169.254/latest/meta-data/iam/security-credentials/AppRole HTTP/1.1" 200 1423 "-" "Mozilla/5.0"`
Log Snippet 2 (CloudTrail Security Audit Log):
`{"eventTime": "2026-07-27T14:25:04Z", "eventName": "ListBuckets", "userARN": "arn:aws:iam::123456789012:role/AppRole", "sourceIPAddress": "198.51.100.89", "userAgent": "aws-sdk-python/1.26.0"}`
Based on the correlated log telemetry, which of the following best describes the attack vector executed and the log indicator confirming successful exploitation?
- A Server-Side Request Forgery (SSRF) attack exfiltrated IAM temporary role credentials from the instance metadata service (IMDS), confirmed by CloudTrail logging API requests issued from an external IP address (198.51.100.89) using the compromised role.Cevap
- BA SQL Injection (SQLi) attack targeted the backend database through the URL parameter, confirmed by the HTTP 200 response status containing database schema information in the response payload.
- CAn authorization policy misconfiguration allowed an authenticated internal user to elevate privileges, confirmed by the HTTP 200 status code issued to the internal IP address (192.0.2.45).
- DA SIEM correlation rule misinterpretation caused a false positive alert by linking routine SDK administration traffic with normal web application image fetching.