This hunt targets adversary activity linked to the Tofsee threat actor by identifying specific Indicators of Compromise (IOCs) that signal potential reconnaissance or initial access attempts within the environment. Proactively hunting for these IOCs in Azure Sentinel is critical because early detection of Tofsee’s unique signatures allows the SOC team to isolate affected assets before lateral movement occurs, thereby reducing dwell time and mitigating high-severity risks associated with this known threat group.
Malware Family: Tofsee Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 157[.]20[.]182[.]81:421 | botnet_cc | 2026-07-11 | 75% |
| ip:port | 157[.]20[.]182[.]81:416 | botnet_cc | 2026-07-11 | 75% |
| ip:port | 196[.]251[.]121[.]90:416 | botnet_cc | 2026-07-11 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Tofsee
let malicious_ips = dynamic(["157.20.182.81", "196.251.121.90"]);
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(["157.20.182.81", "196.251.121.90"]);
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: Tofsee IOCs detection rule in an enterprise environment, including suggested filters and exclusions:
Security Information and Event Management (SIEM) Ingestion of Threat Intelligence Feeds
Source Host or Ingesting Service is identified as the SIEM collector itself (e.g., hostname starts with SIEM-Collector-*) and the Event Type is “File Ingestion” rather than “Endpoint Execution.”Scheduled Antivirus Definition Updates via WSUS
SYSTEM account during defined maintenance windows (e.g., Sundays 02:00–04:00 UTC) where the Parent Process Name is wsusclient.exe or the specific AV update service executable.Endpoint Detection and Response (EDR) Baseline Scans