← 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-06-29T11:00:01Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary behavior involving known VShell indicators of compromise to identify potential command-and-control communications or malicious tool deployment within the environment. Proactively hunting these specific IOCs in Azure Sentinel is critical because early detection of this high-severity threat allows the SOC team to rapidly isolate affected assets and mitigate lateral movement before broader network impact occurs.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port122[.]51[.]108[.]168:4444botnet_cc2026-06-29100%
ip:port192[.]243[.]120[.]239:8089botnet_cc2026-06-29100%
ip:port103[.]101[.]176[.]234:8084botnet_cc2026-06-29100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - VShell
let malicious_ips = dynamic(["103.101.176.234", "122.51.108.168", "192.243.120.239"]);
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(["103.101.176.234", "122.51.108.168", "192.243.120.239"]);
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 detection rule in an enterprise environment, along with suggested filters or exclusions:

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