This detection rule identifies adversary activity involving Sliver C2 framework indicators to uncover potential post-exploitation command and control communications. Proactively hunting for these specific IOCs in Azure Sentinel is critical because Sliver’s modular design allows attackers to evade standard signature-based defenses, necessitating a targeted search to confirm early-stage compromise before lateral expansion occurs.
Malware Family: Sliver Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 185[.]112[.]147[.]233:31337 | botnet_cc | 2026-08-14 | 75% |
| ip:port | 185[.]112[.]147[.]233:80 | botnet_cc | 2026-08-14 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Sliver
let malicious_ips = dynamic(["185.112.147.233"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["185.112.147.233"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios and corresponding exclusion strategies for the ThreatFox: Sliver IOCs detection rule in an enterprise environment:
Scenario: Scheduled Vulnerability Scanning with Sliver Frameworks
10.50.20.x) or filter by process name if the agent is identified as TenableAgent.exe or QualysPC.exe.Scenario: DevOps Pipeline Artifact Deployment
C:\Program Files\Jenkins or D:\GitLab\runner directories, specifically targeting user accounts named svc-ci-runner or azure-devops-agent.Scenario: Endpoint Detection and Response (EDR) Telemetry