This hunt detects adversary activity linked to the Tsundere threat actor by identifying specific Indicators of Compromise (IOCs) that signal potential reconnaissance or initial access attempts within the environment. A proactive search in Azure Sentinel is critical because early identification of these high-severity IOCs enables rapid containment before the adversary can establish persistence or exfiltrate sensitive data.
Malware Family: Tsundere Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 31[.]76[.]96[.]194:443 | botnet_cc | 2026-07-25 | 75% |
| ip:port | 31[.]76[.]96[.]195:443 | botnet_cc | 2026-07-25 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Tsundere
let malicious_ips = dynamic(["31.76.96.195", "31.76.96.194"]);
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(["31.76.96.195", "31.76.96.194"]);
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 the documented false positive scenarios and corresponding exclusion strategies for the ThreatFox: Tsundere IOCs rule:
Scenario 1: Scheduled Antivirus Definition Updates via Microsoft Endpoint Configuration Manager (MECM)
ccmexec.exe or wuauclt.exe) combined with a Time-of-Day filter. Exclude alerts generated between 01:00 and 04:00 UTC originating from the SCCM management server subnet.Scenario 2: Automated Cloud Backup Agent Communication (Veeam or Commvault)
vss.exe, commvault_agent) where the destination port is restricted to standard backup ports (e.g., 9400, 8765) and the source IP belongs to the dedicated “Backup Infrastructure” VLAN.Scenario 3: Third-Party SaaS Integration for Identity Governance (SailPoint or Okta)