This detection identifies adversary behavior where endpoints interact with newly identified ARM-tagged malicious URLs from the URLhaus threat intelligence feed to facilitate command and control or initial payload delivery. A SOC team should proactively hunt for these indicators within Azure Sentinel to rapidly isolate compromised assets before they can establish persistence or exfiltrate sensitive data via high-severity web traffic channels.
Threat: arm Total URLs: 7 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://77.239.124.139/nz/nz.arm5 | offline | malware_download | 2026-07-26 |
hxxp://77.239.124.139/nz/nz.arm | offline | malware_download | 2026-07-26 |
hxxp://77.239.124.139/nz/nz.arm6 | offline | malware_download | 2026-07-26 |
hxxp://31.56.209.153/nz/nz.arm7 | online | malware_download | 2026-07-26 |
hxxp://31.56.209.153/nz/nz.arm5 | online | malware_download | 2026-07-26 |
hxxp://31.56.209.153/nz/nz.arm6 | online | malware_download | 2026-07-26 |
hxxp://31.56.209.153/nz/nz.arm | online | malware_download | 2026-07-26 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arm
let malicious_domains = dynamic(["31.56.209.153"]);
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(["31.56.209.153"]);
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 |
Scenario: Automated Software Update Scans
arm (Android Runtime) update servers to check for patches or download configuration manifests. These requests often hit URLs that URLhaus has flagged as “arm” due to their high-volume traffic patterns, even though they are legitimate vendor endpoints.*.microsoft.com, *.jamfsoftware.com) or exclude URLs containing known update path parameters like /api/update/arm from triggering this rule.Scenario: Scheduled Mobile Device Management (MDM) Syncs
?sync=arm_policy).Scenario: Internal CI/CD Pipeline Artifacts