This detection identifies adversary activity involving access to newly identified malicious URLs tagged by URLhaus with the ‘arc’ classification, which often indicates emerging threats or specific campaign behaviors. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before broader exploitation occurs.
Threat: arc Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://77.239.124.139/nz/nz.arc | offline | malware_download | 2026-07-26 |
hxxp://31.56.209.153/nz/nz.arc | online | malware_download | 2026-07-26 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arc
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 |
Here are 5 specific false positive scenarios for the URLhaus: arc Malicious URLs detection rule in an enterprise environment, along with targeted filters and exclusions:
Scenario: Automated vulnerability scanning by internal security tools (e.g., Qualys or Tenable) probing external web resources.
Source Host or Process Name. Exclude traffic originating from known scanner service accounts (e.g., QUALYS-SCANNER-SVC) and process names like qualyspc.exe or tenable-agent.exe.Scenario: Scheduled software update jobs for enterprise applications (e.g., Microsoft Office 365, Adobe Creative Cloud) fetching release notes.
Destination Domain against a known list of trusted vendor domains (e.g., *.office.com, *.adobe.com). Additionally, exclude process paths containing \AppData\Local\Microsoft\Office\Updates.exe.Scenario: Legitimate administrative tasks involving cloud storage synchronization (e.g., OneDrive for Business or SharePoint).