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

Hunt Hypothesis

This detection rule identifies adversary activity by matching network and host telemetry against sixteen specific Indicators of Compromise (IOCs) linked to the Sliver implant framework. A proactive hunt is essential in Azure Sentinel because Sliver’s modular design allows attackers to establish persistent command-and-control channels that often evade standard signature-based defenses, requiring continuous monitoring to detect early-stage compromises.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port185[.]185[.]68[.]42:31337botnet_cc2026-08-2175%
ip:port89[.]124[.]80[.]214:31337botnet_cc2026-08-2175%
ip:port213[.]145[.]86[.]232:31866botnet_cc2026-08-2175%
ip:port45[.]142[.]141[.]186:31337botnet_cc2026-08-2175%
ip:port188[.]42[.]217[.]40:64323botnet_cc2026-08-2175%
ip:port64[.]90[.]17[.]193:31337botnet_cc2026-08-2175%
ip:port146[.]70[.]155[.]238:31337botnet_cc2026-08-2175%
ip:port43[.]156[.]107[.]94:8887botnet_cc2026-08-2175%
ip:port156[.]224[.]28[.]23:31337botnet_cc2026-08-2175%
ip:port199[.]217[.]98[.]55:31337botnet_cc2026-08-2175%
ip:port31[.]76[.]111[.]38:31337botnet_cc2026-08-2175%
ip:port45[.]153[.]34[.]164:61443botnet_cc2026-08-2175%
ip:port185[.]246[.]220[.]204:55448botnet_cc2026-08-2175%
ip:port185[.]132[.]54[.]254:8888botnet_cc2026-08-2175%
ip:port198[.]13[.]158[.]143:31337botnet_cc2026-08-2175%
ip:port153[.]75[.]82[.]143:31337botnet_cc2026-08-2175%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Sliver
let malicious_ips = dynamic(["198.13.158.143", "188.42.217.40", "153.75.82.143", "146.70.155.238", "199.217.98.55", "45.142.141.186", "156.224.28.23", "185.185.68.42", "185.132.54.254", "64.90.17.193", "43.156.107.94", "213.145.86.232", "89.124.80.214", "31.76.111.38", "45.153.34.164", "185.246.220.204"]);
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(["198.13.158.143", "188.42.217.40", "153.75.82.143", "146.70.155.238", "199.217.98.55", "45.142.141.186", "156.224.28.23", "185.185.68.42", "185.132.54.254", "64.90.17.193", "43.156.107.94", "213.145.86.232", "89.124.80.214", "31.76.111.38", "45.153.34.164", "185.246.220.204"]);
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 rule, along with targeted filtering strategies suitable for an enterprise environment:

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