Detecting Exfiltration (HTTP)
Splunk Query for Detecting HTTP Exfiltration
index="cobaltstrike_exfiltration_http" sourcetype="bro:http:json" method=POST
| stats sum(request_body_len) as TotalBytes by src, dest, dest_port
| eval TotalBytes = TotalBytes/1024/1024Query Breakdown
Last updated