This detection rule identifies adversary activity involving malicious URLs associated with the “opendir” threat, which often indicates compromised web servers or phishing campaigns leveraging directory traversal vulnerabilities. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate affected endpoints and prevent lateral movement before attackers can exploit exposed file structures within the organization’s network.
Threat: opendir Total URLs: 9 Active URLs: 9
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://95.155.151.113/sensi_fb.sh | online | malware_download | 2026-08-01 |
hxxp://95.155.151.113/sensi_dv.sh | online | malware_download | 2026-08-01 |
hxxp://95.155.151.113/sensi_av.sh | online | malware_download | 2026-08-01 |
hxxp://95.155.151.113/sensi_tbk.sh | online | malware_download | 2026-08-01 |
hxxp://95.155.151.113/sensi_tp.sh | online | malware_download | 2026-08-01 |
hxxp://95.155.151.113/sensi_hi.sh | online | malware_download | 2026-08-01 |
hxxp://95.155.151.113/sensi_ct.sh | online | malware_download | 2026-08-01 |
hxxp://95.155.151.113/sensi_hk.sh | online | malware_download | 2026-08-01 |
hxxp://95.155.151.113/sensi_zh.sh | online | malware_download | 2026-08-01 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: opendir
let malicious_domains = dynamic(["95.155.151.113"]);
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(["95.155.151.113"]);
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 3-5 specific false positive scenarios for the URLhaus: opendir Malicious URLs detection rule, along with recommended filters or exclusions:
Scenario: Automated Vulnerability Scanning by Enterprise Tools
opendir system call) on web servers to map assets. If the scanner’s IP range accesses a URL known to trigger opendir signatures in the 9-tagged set, it generates alerts.10.20.50.0/24) or exclude traffic where the User-Agent string contains “Tenable,” “Qualys,” or “Rapid7.”Scenario: Scheduled Backup and Archive Operations
opendir logic when accessing cloud storage gateways (e.g., AWS S3, Azure Blob) via HTTPS URLs to verify directory integrity before ingestion.svc_backup_01, backup_agent). Additionally, filter out URLs containing standard backup API paths like /api/v1/archive or /snapshot/list.Scenario: CI/CD Pipeline Artifact Retrieval