This detection rule identifies adversary activity linked to the Tsunami threat campaign by monitoring for specific Indicators of Compromise (IOCs) known to signal active reconnaissance or initial access attempts. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification of Tsunami-related artifacts enables the SOC team to rapidly isolate affected assets and mitigate potential lateral movement before a full-scale breach occurs.
Malware Family: Tsunami Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 156[.]67[.]218[.]115:8080 | botnet_cc | 2026-07-18 | 75% |
| ip:port | 151[.]106[.]52[.]209:8080 | botnet_cc | 2026-07-18 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Tsunami
let malicious_ips = dynamic(["156.67.218.115", "151.106.52.209"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["156.67.218.115", "151.106.52.209"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: Tsunami IOCs detection rule in an enterprise environment, along with recommended filters or exclusions:
Endpoint Security Agent Updates
C:\Program Files\CrowdStrike\fs.exe, MsMpEng.exe) and whitelist the vendor’s update server IP ranges in the threat intelligence feed configuration.Patch Management Deployment Jobs
OU=Patch-Management-Servers) or filter by the specific scheduled task name (e.g., Microsoft Windows Update Agent or Task Scheduler\SoftwareCenterDeployment).Cloud Backup and Data Replication