← Back to SOC feed Coverage →

URLhaus: vshell Malicious URLs

ioc-hunt HIGH URLhaus
CommonSecurityLogDnsEvents
iocurlhaus
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 URLhaus →
Retrieved: 2026-09-14T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets the execution of the vshell reverse shell payload, a tool frequently used by adversaries to establish persistent remote access and facilitate command-and-control communications. Proactively hunting for these specific URLs in Azure Sentinel allows the SOC team to identify compromised endpoints before the attacker can fully leverage the shell for lateral movement or data exfiltration.

IOC Summary

Threat: vshell Total URLs: 3 Active URLs: 3

URLStatusThreatDate Added
hxxp://222.112.70.149:8084/?h=222.112.70.149&p=8084&t=ws&a=w32&stage=trueonlinemalware_download2026-09-14
hxxp://175.27.140.230:8888/?a=w32&h=175.27.140.230&p=8888&stage=true&t=wsonlinemalware_download2026-09-14
hxxp://139.95.24.51:8081/?h=139.95.24.51&p=8081&t=tcp&a=w64&stage=trueonlinemalware_download2026-09-14

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: vshell
let malicious_domains = dynamic(["139.95.24.51", "175.27.140.230", "222.112.70.149"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc

KQL: Url Proxy Hunt

// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["139.95.24.51", "175.27.140.230", "222.112.70.149"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc

Required Data Sources

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

References

False Positive Guidance

Original source: https://urlhaus.abuse.ch/