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

Hunt Hypothesis

This hunt detects adversary activity involving the Sliver C2 framework by identifying matches against a curated set of 57 specific Indicators of Compromise (IOCs). A SOC team should proactively search for these signals in Azure Sentinel to rapidly identify and contain potential Sliver-based intrusions, which are frequently used by advanced threat actors for stealthy command and control operations.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port193[.]111[.]62[.]133:31337botnet_cc2026-07-3075%
ip:port150[.]40[.]117[.]127:31337botnet_cc2026-07-3075%
ip:port116[.]198[.]204[.]146:31337botnet_cc2026-07-3075%
ip:port5[.]187[.]6[.]96:31337botnet_cc2026-07-3075%
ip:port148[.]113[.]37[.]70:31337botnet_cc2026-07-3075%
ip:port45[.]142[.]142[.]204:31337botnet_cc2026-07-3075%
ip:port132[.]243[.]168[.]75:31337botnet_cc2026-07-3075%
ip:port178[.]105[.]206[.]245:31337botnet_cc2026-07-3075%
ip:port43[.]160[.]235[.]200:31337botnet_cc2026-07-3075%
ip:port13[.]63[.]50[.]133:31337botnet_cc2026-07-3075%
ip:port85[.]122[.]114[.]42:31337botnet_cc2026-07-3075%
ip:port85[.]121[.]176[.]71:31337botnet_cc2026-07-3075%
ip:port47[.]80[.]18[.]76:31337botnet_cc2026-07-3075%
ip:port15[.]204[.]173[.]19:31337botnet_cc2026-07-3075%
ip:port178[.]105[.]31[.]148:31337botnet_cc2026-07-3075%
ip:port162[.]35[.]160[.]163:31337botnet_cc2026-07-3075%
ip:port138[.]226[.]236[.]13:31337botnet_cc2026-07-3075%
ip:port195[.]58[.]137[.]115:31337botnet_cc2026-07-3075%
ip:port67[.]217[.]228[.]212:31337botnet_cc2026-07-3075%
ip:port185[.]165[.]171[.]156:31337botnet_cc2026-07-3075%
ip:port107[.]175[.]202[.]19:31337botnet_cc2026-07-3075%
ip:port159[.]65[.]113[.]187:31337botnet_cc2026-07-3075%
ip:port212[.]2[.]34[.]64:31337botnet_cc2026-07-3075%
ip:port211[.]154[.]20[.]87:31337botnet_cc2026-07-3075%
ip:port80[.]97[.]124[.]202:31337botnet_cc2026-07-3075%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Sliver
let malicious_ips = dynamic(["66.179.31.126", "23.94.252.94", "193.111.62.133", "162.35.160.163", "51.158.144.212", "85.239.245.90", "144.172.114.134", "45.142.142.204", "153.75.81.30", "147.182.208.147", "107.170.13.44", "146.103.96.179", "159.203.57.140", "43.160.235.200", "211.154.20.87", "13.63.50.133", "212.2.34.64", "45.79.219.204", "159.65.113.187", "162.243.174.112", "46.225.180.111", "144.91.76.113", "78.17.212.59", "172.237.155.114", "132.243.168.75", "5.45.185.93", "50.6.37.154", "172.86.94.189", "107.175.202.19", "195.58.137.115", "64.23.192.235", "91.92.40.62", "85.121.176.71", "38.55.232.215", "15.204.173.19", "178.105.31.148", "85.122.114.42", "67.217.228.212", "51.222.139.22", "8.219.149.222", "109.123.239.6", "178.105.206.245", "138.226.236.13", "5.187.6.96", "150.40.117.127", "217.182.129.250", "38.54.59.178", "207.180.234.231", "47.80.18.76", "185.165.171.156"]);
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(["66.179.31.126", "23.94.252.94", "193.111.62.133", "162.35.160.163", "51.158.144.212", "85.239.245.90", "144.172.114.134", "45.142.142.204", "153.75.81.30", "147.182.208.147", "107.170.13.44", "146.103.96.179", "159.203.57.140", "43.160.235.200", "211.154.20.87", "13.63.50.133", "212.2.34.64", "45.79.219.204", "159.65.113.187", "162.243.174.112", "46.225.180.111", "144.91.76.113", "78.17.212.59", "172.237.155.114", "132.243.168.75", "5.45.185.93", "50.6.37.154", "172.86.94.189", "107.175.202.19", "195.58.137.115", "64.23.192.235", "91.92.40.62", "85.121.176.71", "38.55.232.215", "15.204.173.19", "178.105.31.148", "85.122.114.42", "67.217.228.212", "51.222.139.22", "8.219.149.222", "109.123.239.6", "178.105.206.245", "138.226.236.13", "5.187.6.96", "150.40.117.127", "217.182.129.250", "38.54.59.178", "207.180.234.231", "47.80.18.76", "185.165.171.156"]);
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 recommended filters and exclusions tailored for an enterprise environment:

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