This detection identifies adversary behavior where threat actors leverage ARM-tagged malicious URLs from the URLhaus repository to deliver payloads or establish command-and-control channels within the Azure Sentinel environment. Proactive hunting for these specific indicators is critical due to their high severity classification, enabling the SOC team to rapidly isolate compromised endpoints and prevent lateral movement before broader infection occurs.
Threat: arm Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://129.121.110.105/5FF | online | malware_download | 2026-07-28 |
hxxp://129.121.110.105/LFt3 | online | malware_download | 2026-07-28 |
hxxp://129.121.110.105/Lrtt | online | malware_download | 2026-07-28 |
// 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 |
Antivirus Definition Updates via Microsoft Defender
go.microsoft.com or az891570.vo.msecnd.net to download the latest ARM (Architecture Risk Management) signature definitions. These endpoints are frequently flagged by URLhaus as “arm” related due to their association with security payloads, triggering false positives during scheduled nightly updates.MsMpEng.exe when accessing Microsoft CDN domains (*.go.microsoft.com, *.vo.msecnd.net). Alternatively, whitelist these URLs in the detection logic if they are tagged with “clean” or “reputation_high” despite the “arm” tag.Azure Active Directory (Entra ID) Conditional Access Token Refresh
login.microsoftonline.com. During these sessions, the system retrieves ARM-compliant security tokens which URLhaus may categorize under the “arm” tag. This is a standard administrative task for identity management that generates legitimate traffic often mistaken for malicious activity.MSOL_HealthService) or filter out URLs containing login.microsoftonline.com and graph.microsoft.com when the HTTP status code is 200 OK, as these represent successful authentication handshakes rather than malicious redirects.Scheduled Backup Jobs via Veeam or Commvault