This detection identifies adversary activity involving newly discovered ELF (Executable and Linkable Format) malware distributed via malicious URLs tracked by URLhaus. Proactive hunting is essential in Azure Sentinel to rapidly isolate compromised endpoints before these executable threats can establish persistence or initiate lateral movement within the network.
Threat: elf Total URLs: 3 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://68.168.20.218:18081/f8YlUiZDcEOZ | online | malware_download | 2026-08-21 |
hxxp://113.228.208.46:56903/Mozi.a | offline | malware_download | 2026-08-21 |
hxxp://39.61.53.157:42588/Mozi.a | offline | malware_download | 2026-08-21 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["68.168.20.218"]);
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(["68.168.20.218"]);
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 exclusion strategies for the URLhaus: elf Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Antivirus Definition Updates via Cloud Repositories
*.crowdstrike.com, *.microsoft.com) and exclude traffic originating from known management server IPs or service accounts running the update agent (e.g., svc_defender_update).Scenario: Scheduled CI/CD Pipeline Artifact Downloads
*/api/v1/artifacts/*) or exclude the service account identity used by the pipeline runner.Scenario: Internal Software Deployment via Configuration Management