← Back to SOC feed Coverage →

ThreatFox: Tsunami IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
elf-tsunamiiocthreatfox
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-21T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt identifies potential compromise by matching network traffic or asset indicators against known IOCs associated with the Tsunami threat actor. Proactively hunting for these signatures allows the SOC to detect early-stage reconnaissance or lateral movement activities before the adversary can establish a persistent foothold within the Azure environment.

IOC Summary

Malware Family: Tsunami Total IOCs: 3 IOC Types: ip:port, url, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
ip:port45[.]198[.]224[.]184:80payload_delivery2026-09-2175%
urlhxxp://45[.]198[.]224[.]184/nixpayload_delivery2026-09-2175%
sha256_hashe4710a6a8b66437f3a45ecae00d37f492654897b996891656a32547d25fc01b5payload2026-09-2175%

KQL: Ip Hunt

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

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Tsunami
let malicious_urls = dynamic(["http://45.198.224.184/nix"]);
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 - Tsunami
let malicious_hashes = dynamic(["e4710a6a8b66437f3a45ecae00d37f492654897b996891656a32547d25fc01b5"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance


Original source: https://threatfox.abuse.ch/browse/malware/elf.tsunami/