This hypothesis targets the presence of Sliver implant indicators, a popular open-source C2 framework frequently used by adversaries for post-compromise operations such as lateral movement and privilege escalation. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised endpoints early, particularly when standard telemetry may miss the low-and-slow traffic patterns characteristic of Sliver sessions.
Malware Family: Sliver Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 68[.]178[.]202[.]150:40056 | botnet_cc | 2026-09-12 | 75% |
| ip:port | 68[.]178[.]205[.]17:40056 | botnet_cc | 2026-09-12 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Sliver
let malicious_ips = dynamic(["68.178.202.150", "68.178.205.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(["68.178.202.150", "68.178.205.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 |
Sliver Implant Used for Internal Penetration Testing or Red Team Exercises
Cobalt Strike, Metasploit, or a custom redteam_runner.exe) or where the user account belongs to the RedTeam AD group. Alternatively, maintain a whitelist of specific hostnames or IP ranges designated for testing.Sliver Implant Bundled with a Third-Party Application or Installer
Adobe Creative Cloud or VMware Workstation installer). During a mass deployment via SCCM or Intune, the implant is extracted and executed, triggering the IOC match.CCMSetup.exe, IntuneAgent.exe, or msiexec.exe) and the file path resides in a standard application directory (e.g., C:\Program Files\), suppress the alert.Sliver Implant Used for Automated Health Checks or Synthetic Monitoring