This hunt targets adversaries utilizing VShell malware to establish covert command-and-control channels through specific IP:port pairs for data exfiltration. Proactively hunting these indicators in Azure Sentinel is critical to identify early-stage compromise and prevent sensitive data loss before lateral expansion occurs.
Malware Family: VShell Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 149[.]104[.]28[.]77:6000 | botnet_cc | 2026-07-17 | 100% |
| ip:port | 132[.]226[.]72[.]148:10000 | botnet_cc | 2026-07-17 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - VShell
let malicious_ips = dynamic(["132.226.72.148", "149.104.28.77"]);
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(["132.226.72.148", "149.104.28.77"]);
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: VShell IOCs rule in an enterprise environment, including suggested filters or exclusions:
Automated Software Patching and Updates
NT SERVICE\ccmexec) and specific application processes (wsusutil.exe, AdobeARM.exe) to the identified VShell IP ranges during standard maintenance windows (e.g., 02:00–06:00 local time).Cloud Backup and Data Synchronization Agents
VeeamAgent.exe, OneDrive.exe) and destination IPs belonging to known cloud storage providers (e.g., Azure Blob Storage ranges) that match the VShell port specifications.Scheduled Network Scanning and Asset Discovery