During a security telemetry audit of a cloud-hosted perimeter network, a security analyst evaluates a high-priority incident generated by a Network Intrusion Detection System (NIDS). The event correlates an inbound HTTP POST request payload with subsequent anomaly alerts from outbound network flow logs.
Web Application Log Snippet:
http
POST /api/v1/login HTTP/1.1
Host: portal.example.com
Content-Type: application/x-www-form-urlencoded
Payload: user=admin' OR '1'='1'--&pass=unknown
NIDS & VPC Flow Telemetry Alert:
`[ALERT] Outbound session initiated from internal application node 10.0.4.15:443 to external IP 198.51.100.42:53421 following authentication bypass payload.`
The analyst categorizes the attack as a Cross-Site Scripting (XSS) attempt aimed at endpoint browsers and recommends deploying client-side script execution restrictions. Which of the following analytical errors did the analyst commit, and what is the correct network security monitoring response?
- The analyst misdiagnosed a SQL injection (SQLi) attack targeting database queries as Cross-Site Scripting (XSS); the network security monitoring rules should be updated with Web Application Firewall (WAF) deep packet inspection signatures to detect database payload manipulation.Answer
- BThe analyst misdiagnosed Cross-Site Scripting (XSS) as a command injection flaw; the NIDS telemetry alert should be reconfigured to automatically drop all outbound SSL/TLS sessions across the perimeter firewall regardless of context.
- CThe analyst misclassified a detective honeypot alert as a production NIDS log; the internal decoy honeypot network must be repurposed as an inline packet filtering control to drop malicious SQL queries.
- DThe analyst correctly identified the web application attack vector but selected an ineffective mitigation by deploying stateless network access control lists (ACLs) to patch software buffer overflows.