This detection targets adversary behavior where compromised hosts initiate network connections to known ARM-tagged malicious URLs identified by URLhaus, indicating potential command-and-control activity or initial infection vectors. The SOC team should proactively hunt for these indicators within Azure Sentinel to rapidly identify and isolate affected assets before the threat escalates into a broader lateral movement campaign.
Threat: arm Total URLs: 12 Active URLs: 9
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://129.121.110.105/LgI6 | offline | malware_download | 2026-07-16 |
hxxp://129.121.110.105/rmfG | online | malware_download | 2026-07-16 |
hxxp://129.121.110.105/4Ij | online | malware_download | 2026-07-16 |
hxxp://41.216.189.236/nz/nz.arm6 | online | malware_download | 2026-07-16 |
hxxp://41.216.189.236/nz/nz.arm5 | online | malware_download | 2026-07-16 |
hxxp://41.216.189.236/nz/nz.arm | online | malware_download | 2026-07-16 |
hxxp://41.216.189.236/nz/nz.arm7 | online | malware_download | 2026-07-16 |
hxxp://129.121.110.105/aXxp | offline | malware_download | 2026-07-16 |
hxxp://129.121.110.105/Rtcm | offline | malware_download | 2026-07-16 |
hxxp://129.121.114.124/dbgw | online | malware_download | 2026-07-16 |
hxxp://129.121.114.124/Kumc | online | malware_download | 2026-07-16 |
hxxp://129.121.114.124/E87z | online | malware_download | 2026-07-16 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arm
let malicious_domains = dynamic(["129.121.114.124", "41.216.189.236", "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.114.124", "41.216.189.236", "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 in an enterprise environment, along with targeted filtering strategies:
Enterprise Antivirus Definition Updates via Cloud Sync
falcon.sys, MsMpEng.exe) and filter for URLs containing the vendor’s specific domain suffix (e.g., *.crowdstrike.com or *.microsoft.com). Additionally, exclude traffic originating from the specific Service Account used by the AV management console.Scheduled Mobile Device Management (MDM) Policy Pushes
Intune-MA