This hunt detects adversary activity involving four specific Indicators of Compromise (IOCs) linked to the Tofsee threat actor, which may signal reconnaissance or initial access attempts within the environment. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification allows the SOC team to isolate affected assets and mitigate potential data exfiltration before the adversary establishes a persistent foothold.
Malware Family: Tofsee Total IOCs: 4 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 102[.]220[.]160[.]58:420 | botnet_cc | 2026-08-22 | 75% |
| ip:port | 102[.]220[.]160[.]58:418 | botnet_cc | 2026-08-22 | 75% |
| ip:port | 102[.]220[.]160[.]58:427 | botnet_cc | 2026-08-22 | 75% |
| ip:port | 102[.]220[.]160[.]58:421 | botnet_cc | 2026-08-22 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Tofsee
let malicious_ips = dynamic(["102.220.160.58"]);
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(["102.220.160.58"]);
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 for the ThreatFox: Tofsee IOCs detection rule, including specific triggers and recommended exclusions:
Scenario: Automated Vulnerability Scanning by Qualys or Tenable
svc_qualys, tenable_agent) or filter by the known IP ranges of internal scanning appliances.Scenario: Scheduled Endpoint Protection Updates via CrowdStrike or Microsoft Defender
C-Service.exe or MsMpEng.exe) may generate alerts while processing these signatures.ParentProcessName is falcon.sys or MsMpEng.exe) and restrict the rule to only trigger during non-maintenance windows (e.g., exclude 02:00–04:00 UTC).Scenario: Security Information Management (SIEM) Ingestion Jobs