This detection identifies adversary activity involving the exploitation of the “opendir” vulnerability through known malicious URLs that may facilitate remote code execution or data exfiltration. A proactive hunt is essential in Azure Sentinel to rapidly isolate affected endpoints and prevent lateral movement before attackers can establish persistence within the environment.
Threat: opendir Total URLs: 4 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://31.56.209.153/c.sh | online | malware_download | 2026-07-26 |
hxxp://31.56.209.153/wget.sh | offline | malware_download | 2026-07-26 |
hxxp://31.56.209.153/w.sh | offline | malware_download | 2026-07-26 |
hxxp://31.56.209.153/nz/o.xml | online | malware_download | 2026-07-26 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: opendir
let malicious_domains = dynamic(["31.56.209.153"]);
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(["31.56.209.153"]);
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 |
Scenario: Automated Software Update Checks by Endpoint Protection Agents
opendir feed hosted on URLhaus to validate their local signature databases, triggering legitimate HTTP GET requests that match the rule’s logic.CrowdStrike, Microsoft Defender).Scenario: Scheduled SIEM Log Ingestion Jobs
opendir endpoint, which is often misidentified as user-initiated browsing activity.splunkd.exe, logstash).Scenario: Enterprise Proxy Cache Validation and Health Checks
opendir URL to verify feed availability before routing user traffic