This hypothesis posits that adversaries are utilizing the Sliver implant to establish persistent command-and-control channels within the network, evidenced by specific threat indicators. Proactive hunting in Azure Sentinel is critical to rapidly identify and isolate these high-severity artifacts before they can exfiltrate sensitive data or pivot laterally across cloud resources.
Malware Family: Sliver Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 103[.]212[.]187[.]217:31337 | botnet_cc | 2026-07-10 | 75% |
| ip:port | 103[.]212[.]187[.]217:8889 | botnet_cc | 2026-07-10 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Sliver
let malicious_ips = dynamic(["103.212.187.217"]);
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(["103.212.187.217"]);
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 5 specific false positive scenarios for the ThreatFox: Sliver IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Engine Updates
msiexec or svchost.exe process during off-hours maintenance windows.C:\Program Files\CrowdStrike\*) and restrict the rule to trigger only if the parent process is not a trusted system service or installer executable.Software Deployment via SCCM or Intune
User Account is the local system account (NT AUTHORITY\SYSTEM) running under a known deployment job ID (e.g., JobID starting with “APP-DEPLOY”).Third-Party Backup Agent Execution