This detection identifies adversary activity involving four specific indicators of compromise (IOCs) linked to the VShell remote access tool, which is frequently leveraged by threat actors for command and control or lateral movement. A proactive hunt in Azure Sentinel is essential to uncover early-stage infections and potential unauthorized access that may evade standard signature-based defenses before they escalate into broader network compromises.
Malware Family: VShell Total IOCs: 4 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]192[.]213[.]11:8085 | botnet_cc | 2026-07-29 | 100% |
| ip:port | 35[.]209[.]74[.]6:8083 | botnet_cc | 2026-07-29 | 100% |
| ip:port | 58[.]87[.]65[.]43:8084 | botnet_cc | 2026-07-29 | 100% |
| ip:port | 206[.]238[.]68[.]19:8084 | botnet_cc | 2026-07-29 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - VShell
let malicious_ips = dynamic(["45.192.213.11", "35.209.74.6", "206.238.68.19", "58.87.65.43"]);
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(["45.192.213.11", "35.209.74.6", "206.238.68.19", "58.87.65.43"]);
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 detection rule, including targeted filters and exclusions tailored for an enterprise environment:
Scheduled Endpoint Protection Updates via VShell Agent
02:00 – 04:00 UTC). Alternatively, exclude traffic originating from the specific IP address range of the Endpoint Management Server (e.g., Source_IP = 10.50.10.0/24) when the destination matches the known VShell update server domain.Legacy Application Deployment via PowerShell Scripts
VShell CLI tool to verify container integrity before deployment, triggering all 4 IOCs as part of the standard validation handshake.PowerShell.exe or wscript.exe AND the command line contains specific keywords like --validate or -deployment-mode.Internal Security Audit Scans by Qualys