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 network. A SOC team should proactively search for these IOCs in Azure Sentinel to rapidly identify and contain early-stage Tsundere campaigns before they escalate into broader data exfiltration or lateral movement incidents.
Malware Family: Tsundere Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 93[.]152[.]223[.]222:80 | botnet_cc | 2026-07-29 | 75% |
| ip:port | 93[.]152[.]223[.]224:80 | botnet_cc | 2026-07-29 | 75% |
| ip:port | 23[.]94[.]252[.]80:80 | botnet_cc | 2026-07-29 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Tsundere
let malicious_ips = dynamic(["93.152.223.222", "93.152.223.224", "23.94.252.80"]);
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(["93.152.223.222", "93.152.223.224", "23.94.252.80"]);
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 and corresponding exclusion strategies for the ThreatFox: Tsundere IOCs detection rule in an enterprise environment:
Endpoint Security Agent Updates
Process Name of the security agent updater (e.g., MsMpEng.exe, FalconSensorService.exe) and limit the scope to specific time windows (e.g., 02:00–04:00 UTC) where updates are known to occur.IT Asset Management & Inventory Scans
svc-lansweeper, CCMService) and filter out connections where the destination port is standard HTTP/HTTPS (80/443) but the source process is a known management utility.Third-Party Cloud Backup & Synchronization