← Back to SOC feed Coverage →

ThreatFox: Sliver IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
iocthreatfoxwin-sliver
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-09-06T11:00:01Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of Sliver implant indicators, a popular open-source C2 framework frequently used by adversaries for post-compromise lateral movement and persistent access. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised endpoints before the attacker can establish a stable command-and-control channel or escalate privileges.

IOC Summary

Malware Family: Sliver Total IOCs: 11 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port209[.]99[.]190[.]104:31337botnet_cc2026-09-0675%
ip:port23[.]254[.]130[.]234:31337botnet_cc2026-09-0675%
ip:port207[.]56[.]20[.]199:31337botnet_cc2026-09-0675%
ip:port45[.]9[.]149[.]229:31337botnet_cc2026-09-0675%
ip:port177[.]3[.]40[.]23:31337botnet_cc2026-09-0675%
ip:port2[.]56[.]118[.]107:31337botnet_cc2026-09-0675%
ip:port66[.]179[.]31[.]191:31337botnet_cc2026-09-0675%
ip:port85[.]137[.]58[.]194:31337botnet_cc2026-09-0675%
ip:port89[.]19[.]220[.]70:4443botnet_cc2026-09-0675%
ip:port91[.]92[.]47[.]160:37773botnet_cc2026-09-0675%
ip:port125[.]82[.]240[.]181:13357botnet_cc2026-09-0675%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Sliver
let malicious_ips = dynamic(["85.137.58.194", "89.19.220.70", "91.92.47.160", "209.99.190.104", "23.254.130.234", "66.179.31.191", "45.9.149.229", "125.82.240.181", "207.56.20.199", "2.56.118.107", "177.3.40.23"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["85.137.58.194", "89.19.220.70", "91.92.47.160", "209.99.190.104", "23.254.130.234", "66.179.31.191", "45.9.149.229", "125.82.240.181", "207.56.20.199", "2.56.118.107", "177.3.40.23"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/win.sliver/