← Back to SOC feed Coverage →

ThreatFox: VShell IOCs

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

Hunt Hypothesis

This rule detects the presence of VShell, a lightweight web shell often deployed by adversaries to establish persistent access and execute commands on compromised Azure resources. Proactively hunting for these IOCs allows the SOC team to identify stealthy backdoors that may have been introduced through initial access vectors, enabling rapid containment before the adversary leverages the web shell for lateral movement or data exfiltration.

IOC Summary

Malware Family: VShell Total IOCs: 12 IOC Types: ip:port, sha256_hash, url

TypeValueThreat TypeFirst SeenConfidence
ip:port139[.]155[.]42[.]198:8089botnet_cc2026-09-22100%
ip:port207[.]57[.]125[.]216:8084botnet_cc2026-09-22100%
urlhxxp://154[.]91[.]180[.]246:18080/?h=154[.]91[.]180[.]246&p=18080&t=tcp&a=w32&stage=truepayload_delivery2026-09-22100%
urlhxxp://154[.]91[.]180[.]246:18082/?h=154[.]91[.]180[.]246&p=18082&t=ws&a=w64&stage=truepayload_delivery2026-09-2295%
sha256_hashf813d309920d6109c1bfe88f1020d44814123e884a6a9fdb9bccb8a406c799ccpayload2026-09-2295%
sha256_hashc062ac021106deaecc4902203a323946e4ffc38644ebe68c263931739cd42a1cpayload2026-09-2295%
sha256_hash9727349443f01a5698c04810ff940ce90efa02421c375c6cff728fa4468a5214payload2026-09-2295%
sha256_hashebfbdb9ee02f74d2734b3b3c57afeed7a02c8dd12d07b3a9ab14d3ce81511cc3payload2026-09-2295%
sha256_hashb63e4c97c1a2fe872f82f781dfa4179d200ff4e0ec6e650dc1e42134f38903b3payload2026-09-2295%
urlhxxp://154[.]91[.]180[.]246:18080/?h=154[.]91[.]180[.]246&p=18080&t=ws&a=w64&stage=truepayload_delivery2026-09-2295%
urlhxxp://154[.]91[.]180[.]246:18081/?h=154[.]91[.]180[.]246&p=18081&t=tcp&a=w64&stage=truepayload_delivery2026-09-2295%
urlhxxp://154[.]91[.]180[.]246:18082/?h=154[.]91[.]180[.]246&p=18082&t=tcp&a=w64&stage=truepayload_delivery2026-09-2295%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - VShell
let malicious_ips = dynamic(["139.155.42.198", "207.57.125.216"]);
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(["139.155.42.198", "207.57.125.216"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - VShell
let malicious_urls = dynamic(["http://154.91.180.246:18080/?h=154.91.180.246&p=18080&t=tcp&a=w32&stage=true", "http://154.91.180.246:18082/?h=154.91.180.246&p=18082&t=ws&a=w64&stage=true", "http://154.91.180.246:18080/?h=154.91.180.246&p=18080&t=ws&a=w64&stage=true", "http://154.91.180.246:18081/?h=154.91.180.246&p=18081&t=tcp&a=w64&stage=true", "http://154.91.180.246:18082/?h=154.91.180.246&p=18082&t=tcp&a=w64&stage=true"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - VShell
let malicious_hashes = dynamic(["f813d309920d6109c1bfe88f1020d44814123e884a6a9fdb9bccb8a406c799cc", "c062ac021106deaecc4902203a323946e4ffc38644ebe68c263931739cd42a1c", "9727349443f01a5698c04810ff940ce90efa02421c375c6cff728fa4468a5214", "ebfbdb9ee02f74d2734b3b3c57afeed7a02c8dd12d07b3a9ab14d3ce81511cc3", "b63e4c97c1a2fe872f82f781dfa4179d200ff4e0ec6e650dc1e42134f38903b3"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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