This detection rule identifies adversary activity involving known VShell indicators of compromise (IOCs) that may signal unauthorized access or command-and-control communications within the environment. Proactively hunting for these specific IOCs in Azure Sentinel is critical to rapidly detect and contain potential threats leveraging VShell infrastructure before they escalate into broader security incidents.
Malware Family: VShell Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 106[.]38[.]201[.]117:8001 | botnet_cc | 2026-07-31 | 100% |
| ip:port | 64[.]118[.]132[.]68:8084 | botnet_cc | 2026-07-31 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - VShell
let malicious_ips = dynamic(["106.38.201.117", "64.118.132.68"]);
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(["106.38.201.117", "64.118.132.68"]);
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 and corresponding filters for the ThreatFox: VShell IOCs detection rule in an enterprise environment:
Scenario: Automated Vulnerability Scanning by Security Operations Center (SOC)
10.20.50.x) or exclude events where the process name is nessuscli.exe / qualyspc.exe.Scenario: Scheduled Group Policy Updates via Microsoft Endpoint Configuration Manager
ccmexec.exe and the destination port matches the SCCM management point port (typically 8531).Scenario: Endpoint Detection and Response (EDR) Telemetry Collection
FalconSensor.exe (CrowdStrike) or MsMpEng.exe (Def