← 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-08-15T11:00:00Z · Confidence: high

Hunt Hypothesis

This rule detects adversaries utilizing VShell malware to establish persistent command-and-control (C2) communications for long-term network access and data exfiltration. Proactive hunting is essential in Azure Sentinel because VShell’s stealthy C2 patterns often evade standard signature-based defenses, requiring behavioral analysis to identify early-stage compromises before lateral movement occurs.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port111[.]229[.]216[.]164:7963botnet_cc2026-08-15100%
ip:port106[.]15[.]104[.]224:1234botnet_cc2026-08-15100%
ip:port204[.]194[.]53[.]9:80botnet_cc2026-08-15100%
ip:port204[.]194[.]53[.]9:8443botnet_cc2026-08-15100%
ip:port207[.]148[.]126[.]156:8084botnet_cc2026-08-15100%
ip:port47[.]95[.]222[.]141:10443botnet_cc2026-08-15100%
ip:port39[.]96[.]3[.]65:8888botnet_cc2026-08-15100%
ip:port47[.]250[.]190[.]129:5001botnet_cc2026-08-14100%
ip:port68[.]64[.]181[.]23:19999botnet_cc2026-08-14100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - VShell
let malicious_ips = dynamic(["106.15.104.224", "47.95.222.141", "47.250.190.129", "39.96.3.65", "207.148.126.156", "111.229.216.164", "68.64.181.23", "204.194.53.9"]);
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(["106.15.104.224", "47.95.222.141", "47.250.190.129", "39.96.3.65", "207.148.126.156", "111.229.216.164", "68.64.181.23", "204.194.53.9"]);
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

Here are 4 specific false positive scenarios for the ThreatFox: VShell IOCs rule, along with suggested filters or exclusions tailored for an enterprise environment:

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