This hunt detects adversary activity involving known Indicators of Compromise (IOCs) linked to the SnappyClient framework, which often signals reconnaissance or command-and-control operations within the network. Proactively hunting for these specific IOCs in Azure Sentinel is critical because early identification allows the SOC team to isolate affected assets and prevent lateral movement before the threat escalates into a full-scale incident.
Malware Family: SnappyClient Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 91[.]92[.]240[.]254:3333 | botnet_cc | 2026-07-13 | 100% |
| ip:port | 91[.]92[.]240[.]254:443 | botnet_cc | 2026-07-13 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - SnappyClient
let malicious_ips = dynamic(["91.92.240.254"]);
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(["91.92.240.254"]);
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 specific false positive scenarios for the ThreatFox: SnappyClient IOCs detection rule in an enterprise environment, along with recommended filters or exclusions:
Automated Patch Management Deployments
10.20.50.x) or specific Service Accounts used for deployment (e.g., svc-sc-patch-deploy). Additionally, filter out events occurring strictly within the defined maintenance window (e.g., Sundays 02:00–06:00 UTC).Onboarding and Image Provisioning Workflows