Hunting for Beaconing with Frequency Analysis
When to Use
- When proactively searching for compromised endpoints calling back to C2 infrastructure
- After threat intelligence reports indicate active C2 frameworks targeting your sector
- When network logs show periodic outbound connections to unfamiliar destinations
- During purple team exercises validating C2 detection capabilities
- When investigating a potential breach and need to identify active C2 channels
Prerequisites
- Network proxy/firewall logs with timestamps and destination data (minimum 24 hours)
- Zeek conn.log, dns.log, and ssl.log or equivalent NetFlow/IPFIX data
- SIEM platform with statistical analysis capability (Splunk, Elastic, Microsoft Sentinel)
- RITA (Real Intelligence Threat Analytics) or AC-Hunter for automated beacon analysis
- Threat intelligence feeds for domain/IP reputation enrichment
Workflow
- Define Beacon Parameters: Establish detection thresholds -- coefficient of variation (CV) below 0.20 indicates strong periodicity, minimum 50 connections over 24 hours, average interval between 30 seconds and 24 hours.
- Collect Network Telemetry: Aggregate proxy logs, DNS queries, firewall connection logs, and Zeek metadata into the analysis platform.
- Calculate Connection Intervals: For each source-destination pair, compute the time delta between consecutive connections and derive mean interval, standard deviation, and CV.
- Apply Jitter Analysis: Sophisticated C2 frameworks like Cobalt Strike add jitter (randomness) to beacon intervals. The Sunburst backdoor beaconed every 15 minutes plus/minus 90 seconds. Analyze jitter patterns to detect even randomized beaconing.
- Filter Legitimate Periodic Traffic: Exclude known-good beaconing sources including Windows Update, antivirus definition updates, NTP synchronization, SaaS heartbeat services, and CDN health checks.
- Analyze Data Size Consistency: C2 heartbeat packets typically have consistent payload sizes. Calculate the CV of bytes transferred per connection -- low variance suggests automated communication.
- Enrich with Threat Intelligence: Check identified beaconing destinations against VirusTotal, WHOIS registration data (flag domains under 30 days old), certificate transparency logs, and passive DNS history.
- Correlate with Endpoint Telemetry: Map beaconing source IPs to endpoint hostnames via DHCP logs, then correlate with process creation events (Sysmon Event ID 1, 3) to identify the responsible process.
- Score and Prioritize: Assign risk scores based on CV value, domain age, TI matches, data size consistency, and suspicious port usage. Escalate high-confidence findings.
Key Concepts
| Concept |
Description |
| T1071.001 |
Application Layer Protocol: Web Protocols -- HTTP/HTTPS beaconing |
| T1071.004 |
Application Layer Protocol: DNS -- DNS-based C2 tunneling |
| T1573 |
Encrypted Channel -- TLS/SSL encrypted C2 communication |
| T1568.002 |
Dynamic Resolution: Domain Generation Algorithms |
| Coefficient of Variation |
Standard deviation divided by mean; values below 0.20 indicate periodicity |
| Jitter |
Random variation added to beacon interval to evade detection |
| RITA Beacon Score |
Composite score from connection regularity, data size consistency, and connection count |
| JA3/JA4 Fingerprinting |
TLS client fingerprinting to identify C2 framework signatures |
| Fast-Flux DNS |
Rapidly changing DNS resolution used to protect C2 infrastructure |
Tools & Systems
| Tool |
Purpose |
| RITA (Real Intelligence Threat Analytics) |
Automated beacon scoring from Zeek logs |
| AC-Hunter |
Commercial threat hunting platform with beacon detection |
| Splunk |
SPL-based statistical beacon analysis with streamstats |
| Elastic Security |
ML anomaly detection for periodic network behavior |
| Zeek |
Network metadata collection (conn.log, dns.log, ssl.log) |
| Suricata |
Network IDS with JA3/JA4 TLS fingerprint extraction |
| FLARE |
C2 profile and beacon pattern detection |
| VirusTotal |
Domain and IP reputation enrichment |
Detection Queries
Splunk -- HTTP/S Beacon Frequency Analysis
index=proxy OR index=firewall
| where NOT match(dest, "(?i)(microsoft|google|amazonaws|cloudflare|akamai)")
| bin _time span=1s
| stats count by src_ip dest _time
| streamstats current=f last(_time) as prev_time by src_ip dest
| eval interval=_time-prev_time
| stats count avg(interval) as avg_interval stdev(interval) as stdev_interval
min(interval) as min_interval max(interval) as max_interval by src_ip dest
| where count > 50
| eval cv=stdev_interval/avg_interval
| where cv < 0.20 AND avg_interval > 30 AND avg_interval < 86400
| sort cv
| table src_ip dest count avg_interval stdev_interval cv
KQL -- Microsoft Sentinel Beacon Detection
DeviceNetworkEvents
| where Timestamp > ago(24h)
| where RemoteIPType == "Public"
| summarize ConnectionTimes=make_list(Timestamp), Count=count() by DeviceName, RemoteIP, RemoteUrl
| where Count > 50
| extend Intervals = array_sort_asc(ConnectionTimes)
| mv-apply Intervals on (
extend NextTime = next(Intervals)
| where isnotempty(NextTime)
| extend IntervalSec = datetime_diff('second', NextTime, Intervals)
| summarize AvgInterval=avg(IntervalSec), StdDev=stdev(IntervalSec)
)
| extend CV = StdDev / AvgInterval
| where CV < 0.2 and AvgInterval > 30
| sort by CV asc
Sigma Rule -- Beaconing Pattern Detection
title: Potential C2 Beaconing Pattern Detected
status: experimental
logsource:
category: proxy
detection:
selection:
dst_ip|cidr: '!10.0.0.0/8'
timeframe: 24h
condition: selection | count(dst) by src_ip > 50
level: medium
tags:
- attack.command_and_control
- attack.t1071.001
Common Scenarios
- Cobalt Strike Beacon: Default 60-second interval with configurable 0-50% jitter over HTTPS. Malleable C2 profiles can mimic legitimate traffic patterns.
- Sunburst/SUNSPOT: 12-14 day dormancy period, then beaconing every 12-14 minutes with randomized jitter, designed to evade frequency analysis.
- DNS Tunneling C2: Encoded data exfiltration via DNS TXT/CNAME queries to attacker-controlled domains, detectable via high subdomain entropy and query volume.
- Sliver C2: Modern C2 framework with HTTPS, mTLS, and WireGuard protocols, configurable beacon intervals with built-in jitter support.
- Legitimate Service Abuse: C2 communication over Slack, Discord, Telegram, or cloud storage APIs, making destination-based filtering ineffective.
Output Format
Hunt ID: TH-BEACON-[DATE]-[SEQ]
Source IP: [Internal IP]
Source Host: [Hostname from DHCP/DNS]
Destination: [Domain/IP]
Protocol: [HTTP/HTTPS/DNS]
Beacon Interval: [Average seconds]
Jitter Estimate: [Percentage]
Coefficient of Variation: [CV value]
Connection Count: [Total connections in window]
Data Size CV: [Payload consistency metric]
Domain Age: [Days since registration]
TI Match: [Yes/No -- source]
Risk Score: [0-100]
Risk Level: [Critical/High/Medium/Low]
Indicators: [List of triggered risk factors]
1---2name: hunting-for-beaconing-with-frequency-analysis3description: Identify command-and-control beaconing patterns in network traffic by applying statistical frequency analysis, jitter calculation, and coefficient of variation scoring to detect periodic callbacks from compromised endpoints.4license: Apache-2.05---67# Hunting for Beaconing with Frequency Analysis89## When to Use1011- When proactively searching for compromised endpoints calling back to C2 infrastructure12- After threat intelligence reports indicate active C2 frameworks targeting your sector13- When network logs show periodic outbound connections to unfamiliar destinations14- During purple team exercises validating C2 detection capabilities15- When investigating a potential breach and need to identify active C2 channels1617## Prerequisites1819- Network proxy/firewall logs with timestamps and destination data (minimum 24 hours)20- Zeek conn.log, dns.log, and ssl.log or equivalent NetFlow/IPFIX data21- SIEM platform with statistical analysis capability (Splunk, Elastic, Microsoft Sentinel)22- RITA (Real Intelligence Threat Analytics) or AC-Hunter for automated beacon analysis23- Threat intelligence feeds for domain/IP reputation enrichment2425## Workflow26271. **Define Beacon Parameters**: Establish detection thresholds -- coefficient of variation (CV) below 0.20 indicates strong periodicity, minimum 50 connections over 24 hours, average interval between 30 seconds and 24 hours.282. **Collect Network Telemetry**: Aggregate proxy logs, DNS queries, firewall connection logs, and Zeek metadata into the analysis platform.293. **Calculate Connection Intervals**: For each source-destination pair, compute the time delta between consecutive connections and derive mean interval, standard deviation, and CV.304. **Apply Jitter Analysis**: Sophisticated C2 frameworks like Cobalt Strike add jitter (randomness) to beacon intervals. The Sunburst backdoor beaconed every 15 minutes plus/minus 90 seconds. Analyze jitter patterns to detect even randomized beaconing.315. **Filter Legitimate Periodic Traffic**: Exclude known-good beaconing sources including Windows Update, antivirus definition updates, NTP synchronization, SaaS heartbeat services, and CDN health checks.326. **Analyze Data Size Consistency**: C2 heartbeat packets typically have consistent payload sizes. Calculate the CV of bytes transferred per connection -- low variance suggests automated communication.337. **Enrich with Threat Intelligence**: Check identified beaconing destinations against VirusTotal, WHOIS registration data (flag domains under 30 days old), certificate transparency logs, and passive DNS history.348. **Correlate with Endpoint Telemetry**: Map beaconing source IPs to endpoint hostnames via DHCP logs, then correlate with process creation events (Sysmon Event ID 1, 3) to identify the responsible process.359. **Score and Prioritize**: Assign risk scores based on CV value, domain age, TI matches, data size consistency, and suspicious port usage. Escalate high-confidence findings.3637## Key Concepts3839| Concept | Description |40|---------|-------------|41| T1071.001 | Application Layer Protocol: Web Protocols -- HTTP/HTTPS beaconing |42| T1071.004 | Application Layer Protocol: DNS -- DNS-based C2 tunneling |43| T1573 | Encrypted Channel -- TLS/SSL encrypted C2 communication |44| T1568.002 | Dynamic Resolution: Domain Generation Algorithms |45| Coefficient of Variation | Standard deviation divided by mean; values below 0.20 indicate periodicity |46| Jitter | Random variation added to beacon interval to evade detection |47| RITA Beacon Score | Composite score from connection regularity, data size consistency, and connection count |48| JA3/JA4 Fingerprinting | TLS client fingerprinting to identify C2 framework signatures |49| Fast-Flux DNS | Rapidly changing DNS resolution used to protect C2 infrastructure |5051## Tools & Systems5253| Tool | Purpose |54|------|---------|55| RITA (Real Intelligence Threat Analytics) | Automated beacon scoring from Zeek logs |56| AC-Hunter | Commercial threat hunting platform with beacon detection |57| Splunk | SPL-based statistical beacon analysis with streamstats |58| Elastic Security | ML anomaly detection for periodic network behavior |59| Zeek | Network metadata collection (conn.log, dns.log, ssl.log) |60| Suricata | Network IDS with JA3/JA4 TLS fingerprint extraction |61| FLARE | C2 profile and beacon pattern detection |62| VirusTotal | Domain and IP reputation enrichment |6364## Detection Queries6566### Splunk -- HTTP/S Beacon Frequency Analysis67```spl68index=proxy OR index=firewall69| where NOT match(dest, "(?i)(microsoft|google|amazonaws|cloudflare|akamai)")70| bin _time span=1s71| stats count by src_ip dest _time72| streamstats current=f last(_time) as prev_time by src_ip dest73| eval interval=_time-prev_time74| stats count avg(interval) as avg_interval stdev(interval) as stdev_interval75 min(interval) as min_interval max(interval) as max_interval by src_ip dest76| where count > 5077| eval cv=stdev_interval/avg_interval78| where cv < 0.20 AND avg_interval > 30 AND avg_interval < 8640079| sort cv80| table src_ip dest count avg_interval stdev_interval cv81```8283### KQL -- Microsoft Sentinel Beacon Detection84```kql85DeviceNetworkEvents86| where Timestamp > ago(24h)87| where RemoteIPType == "Public"88| summarize ConnectionTimes=make_list(Timestamp), Count=count() by DeviceName, RemoteIP, RemoteUrl89| where Count > 5090| extend Intervals = array_sort_asc(ConnectionTimes)91| mv-apply Intervals on (92 extend NextTime = next(Intervals)93 | where isnotempty(NextTime)94 | extend IntervalSec = datetime_diff('second', NextTime, Intervals)95 | summarize AvgInterval=avg(IntervalSec), StdDev=stdev(IntervalSec)96)97| extend CV = StdDev / AvgInterval98| where CV < 0.2 and AvgInterval > 3099| sort by CV asc100```101102### Sigma Rule -- Beaconing Pattern Detection103```yaml104title: Potential C2 Beaconing Pattern Detected105status: experimental106logsource:107 category: proxy108detection:109 selection:110 dst_ip|cidr: '!10.0.0.0/8'111 timeframe: 24h112 condition: selection | count(dst) by src_ip > 50113level: medium114tags:115 - attack.command_and_control116 - attack.t1071.001117```118119## Common Scenarios1201211. **Cobalt Strike Beacon**: Default 60-second interval with configurable 0-50% jitter over HTTPS. Malleable C2 profiles can mimic legitimate traffic patterns.1222. **Sunburst/SUNSPOT**: 12-14 day dormancy period, then beaconing every 12-14 minutes with randomized jitter, designed to evade frequency analysis.1233. **DNS Tunneling C2**: Encoded data exfiltration via DNS TXT/CNAME queries to attacker-controlled domains, detectable via high subdomain entropy and query volume.1244. **Sliver C2**: Modern C2 framework with HTTPS, mTLS, and WireGuard protocols, configurable beacon intervals with built-in jitter support.1255. **Legitimate Service Abuse**: C2 communication over Slack, Discord, Telegram, or cloud storage APIs, making destination-based filtering ineffective.126127## Output Format128129```130Hunt ID: TH-BEACON-[DATE]-[SEQ]131Source IP: [Internal IP]132Source Host: [Hostname from DHCP/DNS]133Destination: [Domain/IP]134Protocol: [HTTP/HTTPS/DNS]135Beacon Interval: [Average seconds]136Jitter Estimate: [Percentage]137Coefficient of Variation: [CV value]138Connection Count: [Total connections in window]139Data Size CV: [Payload consistency metric]140Domain Age: [Days since registration]141TI Match: [Yes/No -- source]142Risk Score: [0-100]143Risk Level: [Critical/High/Medium/Low]144Indicators: [List of triggered risk factors]145```