This detection identifies adversary activity involving malicious URLs flagged by URLhaus with an “opendir” signature, which often indicates attempts to exploit directory traversal vulnerabilities or execute unauthorized file operations on compromised endpoints. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate affected systems and prevent potential lateral movement or data exfiltration stemming from web-based attacks before they escalate into broader incidents.
Threat: opendir Total URLs: 4 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://94.154.43.238/c2 | offline | malware_download | 2026-08-03 |
hxxp://94.154.43.238/c1 | offline | malware_download | 2026-08-03 |
hxxp://193.233.82.82/c2 | offline | malware_download | 2026-08-03 |
hxxp://193.233.82.82/c1 | offline | malware_download | 2026-08-03 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: opendir
let malicious_domains = dynamic(["94.154.43.238", "193.233.82.82"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["94.154.43.238", "193.233.82.82"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios and corresponding exclusions for the URLhaus: opendir Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Vulnerability Scanning by Tenable Nessus or Qualys
http://internal-web-server/), triggering the “opendir” signature as they enumerate file structures to identify exposed directories.10.20.50.x) or filter out traffic where the User-Agent string contains specific scanner identifiers like Nessus or Qualys.Scenario: Scheduled Backup Jobs Using Veeam or Commvault
opendir attack vector.svc_backup_admin) or filter URLs that point to internal storage gateways (e.g., domains ending in .corp.local or specific IP subnets like 192.168.100.x).Scenario: CI/CD Pipeline Artifact Verification by Jenkins or GitLab