This detection rule identifies adversary activity involving the Sliver C2 framework by monitoring for three specific indicators of compromise that signal potential command and control communications or lateral movement within the network. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly detect and contain sophisticated post-exploitation operations before adversaries can establish persistent access or exfiltrate sensitive data.
Malware Family: Sliver Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 91[.]92[.]40[.]182:37773 | botnet_cc | 2026-08-25 | 75% |
| ip:port | 149[.]88[.]73[.]17:31337 | botnet_cc | 2026-08-25 | 75% |
| ip:port | 85[.]137[.]62[.]187:31337 | botnet_cc | 2026-08-25 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Sliver
let malicious_ips = dynamic(["85.137.62.187", "91.92.40.182", "149.88.73.17"]);
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(["85.137.62.187", "91.92.40.182", "149.88.73.17"]);
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 filters for the ThreatFox: Sliver IOCs detection rule, tailored for a legitimate enterprise environment:
Scenario: Scheduled Antivirus or EDR Scans
svc-crowdstrike, msdefender) and restrict the rule to exclude specific destination IP ranges belonging to the vendor’s update infrastructure (e.g., *.crowdstrike.com, *.microsoft.com).Scenario: Automated Software Deployment via Configuration Management
ccmsetup.exe, puppet-agent, ansible-runner) running under the context of the local system or dedicated service accounts.Scenario: Internal Backup and Data Replication Jobs