This detection identifies adversary activity involving six specific indicators of compromise (IOCs) linked to the VShell remote access tool, which is frequently leveraged by threat actors to establish persistent command and control channels within compromised networks. Proactive hunting for these IOCs in Azure Sentinel is critical because early identification of VShell-related anomalies enables the SOC team to rapidly isolate affected endpoints before adversaries can escalate privileges or exfiltrate sensitive data.
Malware Family: VShell Total IOCs: 6 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 192[.]210[.]197[.]13:8080 | botnet_cc | 2026-08-01 | 100% |
| ip:port | 156[.]238[.]120[.]13:18084 | botnet_cc | 2026-08-01 | 100% |
| ip:port | 119[.]45[.]160[.]160:18089 | botnet_cc | 2026-08-01 | 100% |
| ip:port | 143[.]198[.]207[.]128:57001 | botnet_cc | 2026-08-01 | 100% |
| ip:port | 23[.]254[.]208[.]236:9895 | botnet_cc | 2026-08-01 | 100% |
| ip:port | 23[.]254[.]208[.]236:8084 | botnet_cc | 2026-08-01 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - VShell
let malicious_ips = dynamic(["156.238.120.13", "23.254.208.236", "192.210.197.13", "119.45.160.160", "143.198.207.128"]);
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(["156.238.120.13", "23.254.208.236", "192.210.197.13", "119.45.160.160", "143.198.207.128"]);
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 exclusion strategies for the ThreatFox: VShell IOCs detection rule in an enterprise environment:
Scenario: Automated Backup Agent Scans
Process Name is vbr.exe (Veeam) or rubrik-agent.exe, and the Source IP belongs to the dedicated Backup Subnet range (e.g., 10.20.40.0/24).Scenario: Scheduled Endpoint Security Health Checks
Parent Process is falcon-sensor.exe or sentinelone-agent.exe.Scenario: IT Admin Remote Management Sessions