← Back to SOC feed Coverage →

ThreatFox: Sliver IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsDnsEventsUrlClickEvents
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-09T11:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis posits that adversaries are deploying the Sliver implant to establish persistent command-and-control channels within the Azure environment, leveraging specific indicators of compromise such as unique network signatures and process artifacts. Proactive hunting for these IOCs is critical because early detection of Sliver’s sophisticated evasion capabilities allows the SOC team to disrupt lateral movement before the adversary fully embeds its modular payload across tenant workloads.

IOC Summary

Malware Family: Sliver Total IOCs: 7 IOC Types: ip:port, url, sha256_hash, domain

TypeValueThreat TypeFirst SeenConfidence
ip:port144[.]208[.]127[.]243:8080botnet_cc2026-07-0975%
ip:port144[.]208[.]127[.]243:80botnet_cc2026-07-0975%
domainsecpopper.worldbotnet_cc2026-07-09100%
domaincatalapnews.todaybotnet_cc2026-07-09100%
urlhxxps://feng-shui.ua/b/in.jspayload_delivery2026-07-09100%
urlhxxps://feng-shui.ua/b/up.jspayload_delivery2026-07-09100%
sha256_hash8f708114c42c3ee145d51b0e698f787d249ca86345e5916ac554e750d6eac0c2payload2026-07-09100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Sliver
let malicious_ips = dynamic(["144.208.127.243"]);
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(["144.208.127.243"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Sliver
let malicious_domains = dynamic(["secpopper.world", "catalapnews.today"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Sliver
let malicious_urls = dynamic(["https://feng-shui.ua/b/in.js", "https://feng-shui.ua/b/up.js"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Sliver
let malicious_hashes = dynamic(["8f708114c42c3ee145d51b0e698f787d249ca86345e5916ac554e750d6eac0c2"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 5 specific false positive scenarios for the ThreatFox: Sliver IOCs detection rule, tailored for an enterprise environment where legitimate administrative activities often mimic Sliver C2 behavior:

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