← Back to SOC feed Coverage →

ThreatFox: VShell IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
iocthreatfoxwin-vshell
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-09-06T11:00:01Z · Confidence: high

Hunt Hypothesis

This rule detects the presence of VShell, a lightweight remote access tool often used by adversaries to establish covert command-and-control channels or maintain persistence within compromised Azure environments. Proactively hunting for these IOCs allows the SOC team to identify stealthy backdoors that may bypass standard monitoring, ensuring rapid containment of potential lateral movement or data exfiltration attempts.

IOC Summary

Malware Family: VShell Total IOCs: 11 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port47[.]74[.]43[.]122:8084botnet_cc2026-09-06100%
ip:port156[.]251[.]16[.]126:8084botnet_cc2026-09-06100%
ip:port38[.]46[.]15[.]205:4141botnet_cc2026-09-06100%
ip:port38[.]46[.]15[.]203:4141botnet_cc2026-09-06100%
ip:port43[.]136[.]40[.]48:8088botnet_cc2026-09-06100%
ip:port38[.]46[.]15[.]202:4141botnet_cc2026-09-06100%
ip:port38[.]46[.]15[.]206:4141botnet_cc2026-09-06100%
ip:port8[.]216[.]20[.]25:4433botnet_cc2026-09-06100%
ip:port192[.]144[.]219[.]65:8099botnet_cc2026-09-06100%
ip:port38[.]76[.]202[.]152:9999botnet_cc2026-09-06100%
ip:port47[.]105[.]100[.]60:8086botnet_cc2026-09-06100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - VShell
let malicious_ips = dynamic(["38.46.15.202", "38.46.15.205", "156.251.16.126", "38.46.15.206", "47.105.100.60", "192.144.219.65", "43.136.40.48", "38.46.15.203", "47.74.43.122", "8.216.20.25", "38.76.202.152"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["38.46.15.202", "38.46.15.205", "156.251.16.126", "38.46.15.206", "47.105.100.60", "192.144.219.65", "43.136.40.48", "38.46.15.203", "47.74.43.122", "8.216.20.25", "38.76.202.152"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/win.vshell/