This rule detects adversary behavior involving the exploitation of ARM-based endpoints through interactions with known malicious URLs identified by URLhaus. A SOC team should proactively hunt for this activity in Azure Sentinel to rapidly identify and isolate compromised devices before attackers can establish persistence or exfiltrate sensitive data from mobile or embedded systems.
Threat: arm Total URLs: 13 Active URLs: 9
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://94.154.43.238/bins/arm5 | online | malware_download | 2026-08-03 |
hxxp://94.154.43.238/bins/arm7 | online | malware_download | 2026-08-03 |
hxxp://94.154.43.238/bins/arm | online | malware_download | 2026-08-03 |
hxxp://94.154.43.238/bins/arm6 | online | malware_download | 2026-08-03 |
hxxp://193.233.82.82/bins/arm5 | online | malware_download | 2026-08-03 |
hxxp://193.233.82.82/bins/arm7 | online | malware_download | 2026-08-03 |
hxxp://193.233.82.82/bins/arm | online | malware_download | 2026-08-03 |
hxxp://193.233.82.82/bins/arm6 | online | malware_download | 2026-08-03 |
hxxp://204.10.194.60/xlumen/lkxstress.arm | offline | malware_download | 2026-08-03 |
hxxp://204.10.194.60/xlumen/lkxstress.arm5 | offline | malware_download | 2026-08-03 |
hxxp://204.10.194.60/xlumen/lkxstress.arm7 | offline | malware_download | 2026-08-03 |
hxxp://204.10.194.60/xlumen/lkxstress.arm6 | offline | malware_download | 2026-08-03 |
hxxp://31.77.227.111/hiddenbin/boatnet.arm5 | online | malware_download | 2026-08-03 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arm
let malicious_domains = dynamic(["94.154.43.238", "193.233.82.82", "31.77.227.111"]);
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(["94.154.43.238", "193.233.82.82", "31.77.227.111"]);
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: arm Malicious URLs detection rule in an enterprise environment, along with targeted filters or exclusions:
Endpoint Protection Scanner Updates
13.107.42.16 for Microsoft) or whitelist the exact update domain suffix (e.g., *.update.microsoft.com, *.crowdstrike.com).Automated Patch Management Deployments
svc-patch-deploy) or filter by the User-Agent string containing known patch management tool identifiers (e.g., WSUSClient, SCCM-Client).Cloud Backup and Synchronization Services