← Back to SOC feed Coverage →

ThreatFox: VShell IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
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-08T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of VShell, a lightweight web-based shell that adversaries deploy to establish persistent remote access and execute commands within compromised Azure environments. Proactively hunting for these IOCs is critical because VShell often operates in user space with minimal footprint, allowing attackers to bypass traditional network controls and maintain stealthy footholds for lateral movement or data exfiltration.

IOC Summary

Malware Family: VShell Total IOCs: 22 IOC Types: ip:port, md5_hash, sha1_hash, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
ip:port154[.]91[.]59[.]118:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]60[.]126:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]61[.]99:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]59[.]119:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]63[.]108:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]63[.]109:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]63[.]105:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]61[.]106:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]63[.]100:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]61[.]105:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]61[.]103:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]61[.]102:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]61[.]101:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]61[.]100:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]61[.]114:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]61[.]115:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]61[.]125:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]61[.]116:8094botnet_cc2026-09-08100%
ip:port154[.]91[.]60[.]99:8094botnet_cc2026-09-08100%
sha1_hash1a9cd178c20f433c090db2cd998b6e23875fbda6payload2026-09-0895%
md5_hash81f40cf86a0398fa67c831f204ba186bpayload2026-09-0895%
sha256_hash8cf3cf35c95976b94178dba716adf5308d54f9226e90413f43dbff681afd5842payload2026-09-0895%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - VShell
let malicious_ips = dynamic(["154.91.61.103", "154.91.63.108", "154.91.61.100", "154.91.63.100", "154.91.63.109", "154.91.61.105", "154.91.61.115", "154.91.61.116", "154.91.59.119", "154.91.61.125", "154.91.61.102", "154.91.61.106", "154.91.61.101", "154.91.61.114", "154.91.60.99", "154.91.63.105", "154.91.61.99", "154.91.60.126", "154.91.59.118"]);
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(["154.91.61.103", "154.91.63.108", "154.91.61.100", "154.91.63.100", "154.91.63.109", "154.91.61.105", "154.91.61.115", "154.91.61.116", "154.91.59.119", "154.91.61.125", "154.91.61.102", "154.91.61.106", "154.91.61.101", "154.91.61.114", "154.91.60.99", "154.91.63.105", "154.91.61.99", "154.91.60.126", "154.91.59.118"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - VShell
let malicious_hashes = dynamic(["1a9cd178c20f433c090db2cd998b6e23875fbda6", "81f40cf86a0398fa67c831f204ba186b", "8cf3cf35c95976b94178dba716adf5308d54f9226e90413f43dbff681afd5842"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure 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/