This hypothesis posits that adversaries are leveraging ARM-tagged malicious URLs to execute initial infection vectors or command-and-control communications within the network. The SOC team should proactively hunt for these specific indicators in Azure Sentinel to identify early-stage compromises and block lateral movement before the malware establishes persistence on endpoints.
Threat: arm Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://ths.lat/volar.armv5l | online | malware_download | 2026-07-18 |
hxxp://ths.lat/volar.armv6l | online | malware_download | 2026-07-18 |
hxxp://ths.lat/volar.armv7l | online | malware_download | 2026-07-18 |
hxxp://ths.lat/volar.armv4l | online | malware_download | 2026-07-18 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arm
let malicious_domains = dynamic(["ths.lat"]);
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(["ths.lat"]);
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 5 specific false positive scenarios for the URLhaus: arm Malicious URLs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Definition Updates
svc_crowdstrike, LocalSystem) specifically targeting vendor domains like *.crowdstrike.com or *.microsoft.com.Software Deployment and Patch Management
SCCM service process (ccmexec.exe) communicating with internal distribution point IP ranges and specific vendor update domains (e.g., *.download.windowsupdate.com).Automated Backup Verification Jobs