This detection rule identifies adversary activity involving the Sliver C2 framework by monitoring for specific indicators of compromise such as unique process executions and network connections. Proactively hunting for these signals in Azure Sentinel is critical to rapidly detect early-stage post-exploitation operations and prevent potential lateral movement or data exfiltration before they escalate into a major incident.
Malware Family: Sliver Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 89[.]213[.]118[.]199:31337 | botnet_cc | 2026-07-28 | 75% |
| ip:port | 89[.]213[.]118[.]199:8080 | botnet_cc | 2026-07-28 | 75% |
| ip:port | 89[.]213[.]118[.]199:8443 | botnet_cc | 2026-07-28 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Sliver
let malicious_ips = dynamic(["89.213.118.199"]);
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(["89.213.118.199"]);
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 the documented false positive scenarios for the ThreatFox: Sliver IOCs detection rule, including specific triggers and recommended filters:
Software Deployment via Endpoint Management Tools
ccmexec.exe (SCCM), MsMpEng.exe (Defender), or IntuneManagementExtension.exe, and restricts matches to specific known file paths within the %ProgramFiles% directory of these tools.Scheduled Administrative Maintenance Jobs
Task Name and User Context. Filter out alerts where the execution user is a known service account (e.g., DOMAIN\svc-backup) or SYSTEM, and the task name contains keywords such as “HealthCheck,” “Inventory,” or “PatchCycle.”DevOps CI/CD Pipeline Artifacts