This hypothesis posits that adversaries are leveraging ARM-tagged malicious URLs to execute initial compromise or lateral movement within the network. The SOC team should proactively hunt for these indicators in Azure Sentinel to identify early-stage threats and validate endpoint protection efficacy before widespread infection occurs.
Threat: arm Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://103.130.215.73/arm | online | malware_download | 2026-07-10 |
hxxp://103.130.215.73/arm6 | online | malware_download | 2026-07-10 |
hxxp://103.130.215.73/arm5 | online | malware_download | 2026-07-10 |
hxxp://103.130.215.73///arm5 | online | malware_download | 2026-07-10 |
hxxp://103.130.215.73/arm7 | online | malware_download | 2026-07-10 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arm
let malicious_domains = dynamic(["103.130.215.73"]);
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.130.215.73"]);
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 suggested filters or exclusions:
Endpoint Protection Health Checks & Telemetry Uploads
svc-crowdstrike-agent, svc-sentinelone) and restrict exclusions to destination ports commonly used for telemetry (e.g., TCP 443, 80) targeting known vendor IP ranges or domains ending in .crowdstrike.com or .sentinelone.net.Scheduled Patch Management & Software Updates
*.update.microsoft.com, *.adobe.io).**IT Admin Scripting &