This detection identifies adversary activity involving malicious URLs flagged by the ELF (Executable and Linkable Format) tag within the URLhaus threat intelligence feed, indicating potential delivery of executable malware or compromised web resources. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate affected endpoints and prevent lateral movement before the malicious payloads are executed on user systems.
Threat: elf Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://103.83.86.215/n2/mips | online | malware_download | 2026-08-06 |
hxxp://103.83.86.215/n2/mpsl | online | malware_download | 2026-08-06 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["103.83.86.215"]);
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(["103.83.86.215"]);
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 4 specific false positive scenarios for the URLhaus: elf Malicious URLs rule in an enterprise environment, along with suggested filters or exclusions:
Scenario: Automated Antivirus Definition Updates via Cloud Repositories
*.update.microsoft.com, *.crowdstrike.com) where the source IP belongs to the internal update service account or specific jump hosts, rather than general user workstations.Scenario: CI/CD Pipeline Artifact Deployment
10.20.40.0/24) destined for internal artifact repository URLs, ensuring that automated build jobs do not trigger alerts on standard deployment activities.Scenario: Scheduled Linux Backup Jobs Using Cloud Storage