← Back to SOC feed Coverage →

ThreatFox: XWorm IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
iocthreatfoxwin-xworm
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-21T23:00:01Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of XWorm malware indicators, which are frequently used for initial access and lateral movement within enterprise networks. Proactively searching for these IOCs in Azure Sentinel allows the SOC to identify compromised assets early, mitigating the risk of persistent backdoors and data exfiltration before the adversary can establish a foothold.

IOC Summary

Malware Family: XWorm Total IOCs: 5 IOC Types: sha1_hash, md5_hash, ip:port, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
ip:port89[.]39[.]121[.]145:1370botnet_cc2026-09-2175%
ip:port13[.]143[.]66[.]14:1370botnet_cc2026-09-2175%
sha256_hash553f13ad0daf5cc2897b177df386c40b12b83c581f7685131a52f30b48b37987payload2026-09-2195%
sha1_hash3c4f65fe6f50dcf5e30eba42790637a660a45316payload2026-09-2195%
md5_hash483023803efafc86ee7c15151b0fe0e8payload2026-09-2195%

KQL: Ip Hunt

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

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - XWorm
let malicious_hashes = dynamic(["553f13ad0daf5cc2897b177df386c40b12b83c581f7685131a52f30b48b37987", "3c4f65fe6f50dcf5e30eba42790637a660a45316", "483023803efafc86ee7c15151b0fe0e8"]);
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

References

False Positive Guidance

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