← 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-01T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversaries leveraging the Sliver post-exploitation framework to establish command-and-control channels, facilitate lateral movement, and maintain persistence across compromised endpoints. Proactively hunting for these indicators in Azure Sentinel is critical because Sliver’s modular design allows attackers to evade standard signature-based defenses, necessitating a proactive search for its specific IOCs to identify stealthy, advanced intrusions early in the kill chain.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port89[.]106[.]83[.]136:36366botnet_cc2026-09-0175%
ip:port185[.]165[.]171[.]71:31337botnet_cc2026-09-0175%
ip:port85[.]239[.]144[.]103:31337botnet_cc2026-09-0175%
ip:port149[.]104[.]90[.]17:31337botnet_cc2026-09-0175%
ip:port185[.]242[.]235[.]16:31337botnet_cc2026-09-0175%
ip:port89[.]34[.]90[.]139:31337botnet_cc2026-09-0175%
ip:port91[.]92[.]144[.]21:55535botnet_cc2026-09-0175%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Sliver
let malicious_ips = dynamic(["185.242.235.16", "91.92.144.21", "85.239.144.103", "89.106.83.136", "89.34.90.139", "185.165.171.71", "149.104.90.17"]);
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(["185.242.235.16", "91.92.144.21", "85.239.144.103", "89.106.83.136", "89.34.90.139", "185.165.171.71", "149.104.90.17"]);
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

Here are 4 specific false positive scenarios for the ThreatFox: Sliver IOCs detection rule, including context and suggested filters/exclusions:

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