This detection identifies adversary behavior involving the propagation of ARM-architecture-specific malware through known malicious URLs flagged by URLhaus. A proactive hunt is essential in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before these targeted threats can establish persistence within the environment.
Threat: arm Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://129.121.110.105/flB | online | malware_download | 2026-07-24 |
hxxp://129.121.110.105/yIB | online | malware_download | 2026-07-24 |
hxxp://129.121.110.105/WGGU | online | malware_download | 2026-07-24 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arm
let malicious_domains = dynamic(["129.121.110.105"]);
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(["129.121.110.105"]);
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 for the URLhaus: arm Malicious URLs detection rule, including tailored filters and exclusions:
Automated Antivirus Definition Updates via Cloud Services
*.update.microsoft.com, *.falcon.crowdstrike.com) within the detection rule logic, ensuring traffic originating from these specific FQDNs is bypassed regardless of the “arm” tag.Scheduled CI/CD Pipeline Artifact Retrieval
GitHub-Hookshot-*).Mobile Device Management (MDM) Profile Distribution