This hunt detects adversary behavior characterized by the presence of three specific Indicators of Compromise (IOCs) linked to the Tsundere threat actor, which often signifies early-stage reconnaissance or lateral movement activities. A SOC team should proactively hunt for these IOCs in their Azure Sentinel environment to rapidly identify and contain potential Tsundere intrusions before they escalate into more severe incidents, given the high severity of this detection rule.
Malware Family: Tsundere Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 93[.]152[.]223[.]158:80 | botnet_cc | 2026-07-28 | 75% |
| ip:port | 23[.]94[.]252[.]87:80 | botnet_cc | 2026-07-28 | 75% |
| ip:port | 23[.]94[.]252[.]55:80 | botnet_cc | 2026-07-28 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Tsundere
let malicious_ips = dynamic(["23.94.252.87", "93.152.223.158", "23.94.252.55"]);
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(["23.94.252.87", "93.152.223.158", "23.94.252.55"]);
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 4 specific false positive scenarios for the ThreatFox: Tsundere IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Endpoint Protection Policy Updates via Scheduled Jobs
ccmexec.exe for SCCM or csfalcon.exe for CrowdStrike) combined with a time-based filter to only alert outside the maintenance window (e.g., 02:00–04:00 local time).Security Information and Event Management (SIEM) Log Ingestion
svc-siem-ingest) which is known to be a service account running these automated pipelines.Software Deployment via Group Policy or Intune