This hunt targets the presence of two specific malicious URLs associated with the d52f85 tag, which adversaries may use for command-and-control channels or payload delivery. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify compromised endpoints or data exfiltration events before the threat actors can fully establish persistence or escalate privileges.
Threat: d52f85 Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://62.60.226.140/files/7782139129/swm3mLn.exe | offline | malware_download | 2026-09-11 |
hxxp://62.60.226.140/files/gold/file.exe | online | malware_download | 2026-09-11 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: d52f85
let malicious_domains = dynamic(["62.60.226.140"]);
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(["62.60.226.140"]);
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 |
security-qa or dev-test subnets, or filter out requests where the User-Agent contains ZAP or Burp.d52f85 URLs for broken link detection.
Screaming Frog, HeadlessChrome) or filter out requests where the HTTP method is HEAD (common for link checking) rather than GET/POST.svc-integration, api-gateway) or filter out requests originating from the integration-cluster namespace in Kubernetes.