This hunt targets adversary behavior involving the deployment of VShell infrastructure components by correlating specific Indicators of Compromise (IOCs) within Azure Sentinel logs to identify potential command-and-control or data exfiltration channels. Proactively hunting for these signals is critical because early detection of VShell-related IOCs allows the SOC team to rapidly isolate compromised assets and mitigate high-severity threats before they escalate into broader network incidents.
Malware Family: VShell Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 47[.]98[.]172[.]208:8084 | botnet_cc | 2026-07-05 | 100% |
| ip:port | 192[.]144[.]167[.]96:10081 | botnet_cc | 2026-07-05 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - VShell
let malicious_ips = dynamic(["192.144.167.96", "47.98.172.208"]);
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(["192.144.167.96", "47.98.172.208"]);
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: VShell IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Endpoint Protection Scanning of Quarantine Archives
C:\ProgramData\ThreatFox\Quarantine, triggering a match even though no active threat is present.NT SERVICE\CrowdStrikeService or LocalSystem) accessing paths containing \ThreatFox\ or file extensions .ioc.xml. Additionally, exclude traffic originating from the internal IP range of the Security Operations Center (SOC) management subnet.Automated Threat Intelligence Feed Synchronization
ThreatFox-Sync-Agent or similar known automation identifiers.IT Administration of Virtual Desktop Infrastructure (VDI)