This hunt detects adversary activity linked to the Tsundere threat actor by monitoring specific Indicators of Compromise (IOCs) that signal potential reconnaissance or initial access attempts within the Azure Sentinel environment. A SOC team should proactively hunt for these IOCs to rapidly identify and isolate early-stage compromises, thereby preventing lateral movement before the attacker establishes a persistent foothold in critical systems.
Malware Family: Tsundere Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 23[.]94[.]252[.]7:80 | botnet_cc | 2026-07-24 | 75% |
| ip:port | 2[.]27[.]248[.]80:80 | botnet_cc | 2026-07-24 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Tsundere
let malicious_ips = dynamic(["23.94.252.7", "2.27.248.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(["23.94.252.7", "2.27.248.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 the documented false positive scenarios and corresponding exclusions for the ThreatFox: Tsundere IOCs detection rule:
Scenario: Scheduled Antivirus Definition Updates via Cloud Connectors
MpCmdRun.exe or FalconSensorService) generate network traffic matching the rule’s IOCs during peak maintenance windows (typically 02:00–04:00 UTC).MpCmdRun.exe, FalconService.exe, ccSvcHst.exe) AND the connection destination falls within the organization’s approved “Trusted Cloud Services” allow-list IP range.Scenario: Automated Backup and Archive Jobs
vbr.exe or rubrikservice) initiates a data sync, it triggers network flows that mimic the threat signature.DOMAIN\svc-veeam-backup, DOMAIN\svc-rubrik) where the destination port is standard HTTPS (443) or a known storage protocol port (e.g., 8080, 9000).Scenario: Third-Party SaaS Integration Webhooks