CSA (312-39) SOC Simulation Lab
Welcome to this Tier 3 SOC simulation focused on web application reconnaissance. Analyze the SIEM telemetry to determine the attacker's intent and identify the primary security risk.
Scenario Context
You are a SOC analyst at MedCare Health. The organization operates a sensitive patient portal hosted on IIS behind an F5 Web Application Firewall (WAF). Alert fatigue is currently high due to an un-tuned internal vulnerability scanner. However, a Tier 1 analyst has escalated an alert titled Unusual HTTP Method Detected hitting the DMZ from an external IP.
The source IP is associated with known anonymizer exit nodes, and the traffic pattern does not match your authorized scanning schedules. The WAF is currently in transparent/logging mode for this specific vServer due to a recent migration.
Security Environment
Review the correlated logs pulled from the SIEM (Splunk) covering the timeframe of the alert:
Question
SOC Analyst Mini-Lesson: HTTP Method Profiling
In standard web traffic, over 99% of requests use GET, POST, or HEAD. Alerting on anomalous methods is a high-fidelity way to detect reconnaissance tools (like Nmap, Nikto, or Burp Suite) before exploitation begins.
Detection Logic Pattern:
event_type=HTTP AND http_method NOT IN ("GET", "POST", "HEAD") AND http_method IN ("OPTIONS", "TRACE", "TRACK", "PUT", "DELETE")
If you see a successful (Status 200) TRACE request in production, escalate it immediately. WAFs and reverse proxies should be configured to drop these methods by default unless a specific API endpoint explicitly requires them.
Ready for the next incident?
Explore more CSA simulations at ExamRange →