A security analyst is evaluating correlated SIEM telemetry generated by network security monitoring sensors for host 172.16.10.45:
NIDS Alert:
[ALERT] [1:1002941:2] WEB-ATTACK HTTP POST /api/v1/user?input=%3Cscript%3Ealert%281%29%3C%2Fscript%3E HTTP/1.1
NetFlow Log:
SrcIP: 172.16.10.45 | DstIP: 198.51.100.55 | DstPort: 53/UDP | Packets: 4 | Bytes: 216 | Interval: 30s (Recurring)
Based on the network security monitoring telemetry provided, which of the following conclusions are accurate? (Select TWO).
- The NIDS alert indicates a Cross-Site Scripting (XSS) payload attempt targeting the Web API rather than a SQL injection attack.Answer
- The NetFlow telemetry pattern indicates potential Command and Control (C2) beaconing or DNS tunneling activity.Answer
- CThe NIDS alert identifies an active database exfiltration attempt utilizing SQL injection commands.
- DThe recurring NetFlow UDP port 53 traffic represents a production honeypot configured to automatically inline-block perimeter traffic.
Answer
The correct conclusions are that the NIDS alert indicates a Cross-Site Scripting (XSS) payload attempt targeting the Web API rather than a SQL injection attack, and the NetFlow telemetry pattern indicates potential Command and Control (C2) beaconing or DNS tunneling activity.
The NIDS payload decodes to standard JavaScript script execution (`<script>alert(1)</script>`), identifying it as an XSS attack vector. Meanwhile, the NetFlow record shows automated, fixed-interval outbound traffic over UDP port 53 (DNS) to an external host, which is a key indicator of compromise (IoC) for C2 beaconing or DNS covert channel tunneling.
Step-by-Step Solution
Key Concept
Network Security Monitoring Log Analysis and Threat Identification
Estimated Time:2m 0s