This hunt hypothesis targets adversaries deploying Tsundere malware to establish covert command-and-control channels that facilitate data exfiltration and persistent access via phishing or exploit kits. Proactive hunting in Azure Sentinel is critical to detect early-stage indicators such as anomalous outbound traffic and unexpected process executions before the adversary achieves full lateral movement and credential compromise.
Malware Family: Tsundere Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 93[.]152[.]223[.]221:80 | botnet_cc | 2026-07-30 | 75% |
| ip:port | 2[.]27[.]248[.]116:80 | botnet_cc | 2026-07-30 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Tsundere
let malicious_ips = dynamic(["93.152.223.221", "2.27.248.116"]);
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.221", "2.27.248.116"]);
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, along with suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Backup Agent Communication
vbrsvc.exe or rubrik-agent) and generate consistent, high-volume traffic during maintenance windows.Veeam.Backup.Service.exe, Rubrik.Agent.exe) combined with a whitelist of known internal or cloud gateway IP addresses used by the organization’s storage infrastructure.Scenario: Patch Management and Software Updates
NT SERVICE\WUAuserv) and filter by destination domains belonging to trusted software vendors (e.g., *.microsoft.com, *.adobe.com).Scenario: Scheduled Data Exfiltration via ETL Jobs