This detection rule identifies adversary activity involving known Sliver implant indicators of compromise (IOCs) that signal active command-and-control communications or lateral movement within the network. Proactively hunting for these specific signatures in Azure Sentinel is critical to rapidly isolate and remediate sophisticated post-exploitation threats before they establish persistent footholds.
Malware Family: Sliver Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]61[.]149[.]187:31337 | botnet_cc | 2026-07-12 | 75% |
| ip:port | 45[.]61[.]149[.]187:8004 | botnet_cc | 2026-07-12 | 75% |
| ip:port | 45[.]61[.]149[.]187:8005 | botnet_cc | 2026-07-12 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Sliver
let malicious_ips = dynamic(["45.61.149.187"]);
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(["45.61.149.187"]);
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 4 specific false positive scenarios for the ThreatFox: Sliver IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Management Agent Updates
10.50.10.0/24) or filter events where the process name is ccmexec.exe or IvantiAgentService.exe.Internal DevOps Pipeline Execution
DevOps-Runners Active Directory Security Group or filter events where the parent process is java.exe (Jenkins) or gitlab-runner.exe.Scheduled Vulnerability Scanning