This hypothesis detects adversary activity involving the Sliver C2 framework by identifying specific indicators of compromise that signal potential command and control communications or post-exploitation tool deployment within the network. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly identify early-stage intrusions leveraging this advanced, modular C2 platform before adversaries establish persistent access or exfiltrate sensitive data.
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 Endpoint Protection Scans
SYSTEM, LocalService) and processes matching the EDR agent executable names (e.g., C:\Program Files\CrowdStrike\fs.exe or C:\Windows\System32\MsMpEng.exe). Additionally, correlate with the scheduled task name in Windows Task Scheduler to exclude runs occurring during defined maintenance windows.Scenario: Software Deployment via Configuration Management Tools
ccmsetup.exe, ansible-playbook). A specific filter can be applied to ignore traffic initiated by these agents during standard business hours or defined deployment windows.Scenario: Internal DevOps CI/CD Pipeline Artifacts