This detection rule identifies adversary activity involving the Sliver C2 framework by monitoring for four specific Indicators of Compromise (IOCs) known to facilitate command and control communications. Proactively hunting for these IOCs in Azure Sentinel is critical because Sliver’s modular design allows attackers to evade traditional signature-based defenses, requiring active threat hunting to uncover stealthy lateral movement and data exfiltration attempts.
Malware Family: Sliver Total IOCs: 4 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]64[.]52[.]67:31337 | botnet_cc | 2026-09-02 | 75% |
| ip:port | 213[.]111[.]149[.]152:55555 | botnet_cc | 2026-09-02 | 75% |
| ip:port | 118[.]107[.]9[.]213:31337 | botnet_cc | 2026-09-02 | 75% |
| ip:port | 118[.]107[.]9[.]233:31337 | botnet_cc | 2026-09-02 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Sliver
let malicious_ips = dynamic(["213.111.149.152", "118.107.9.233", "118.107.9.213", "45.64.52.67"]);
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(["213.111.149.152", "118.107.9.233", "118.107.9.213", "45.64.52.67"]);
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, along with targeted filters and exclusions:
Scenario: Legitimate deployment of the Sliver C2 framework by internal Red Team or Security Engineering groups during scheduled penetration testing.
RED-TEAM-JMP01, RED-TEAM-JMP02) or filter based on a custom tag attribute (e.g., Environment=Test or Group=Security_Ops).Scenario: Automated backup jobs utilizing Veeam Backup & Replication or Rubrik that generate specific hash signatures matching Sliver IOCs.
DOMAIN\svc_veeam) and filter by process name vrb.exe or Veeam.Backup.Service.exe.Scenario: Execution of Microsoft Endpoint Configuration Manager (MECM) or Intune application deployment tasks.
ccmsetup.exe (Configuration Manager) or `Int