This hunt detects adversary behavior linked to the Tsundere threat actor by searching for specific indicators of compromise that signal active reconnaissance or initial access attempts within the network. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification of Tsundere’s unique signatures allows the SOC team to rapidly isolate affected assets and prevent lateral movement before the adversary establishes a persistent foothold.
Malware Family: Tsundere Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 93[.]152[.]224[.]44:80 | botnet_cc | 2026-07-07 | 75% |
| ip:port | 91[.]92[.]33[.]250:80 | botnet_cc | 2026-07-07 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Tsundere
let malicious_ips = dynamic(["91.92.33.250", "93.152.224.44"]);
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(["91.92.33.250", "93.152.224.44"]);
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 5 specific false positive scenarios for the ThreatFox: Tsundere IOCs detection rule, tailored for an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Policy Updates via CrowdStrike Falcon
137.254.x.x) and specific process names (C:\Program Files\CrowdStrike\csfalcon.exe) from triggering this rule during scheduled maintenance windows (e.g., 02:00–04:00 UTC).Scheduled Microsoft Defender for Endpoint Threat Intelligence Sync
Microsoft-Windows-Security-Auditing or Defender Antivirus Service) runs to synchronize the local threat intelligence database with Microsoft’s cloud. This process initiates outbound connections to Microsoft’s content delivery network, which may utilize IP addresses or domain names that overlap with Tsundere’s benign infrastructure IOCs (specifically regarding certificate validation).Microsoft Defender Antivirus service (MsMpEng.exe) destined for Microsoft Azure Content Delivery Network IP blocks, specifically filtering out events where the Event ID corresponds to a successful policy sync rather than a new threat detection.Internal Vulnerability Scanning with Tenable Nessus