This detection identifies adversary activity involving specific malicious URLs flagged by URLhaus with the tag d52f85, which often indicate active phishing campaigns or command-and-control infrastructure used in malware distribution. A SOC team should proactively hunt for these indicators within Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before attackers can establish persistence or exfiltrate sensitive data.
Threat: d52f85 Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://62.60.226.140/files/7559850987/hcXbK7A.exe | offline | malware_download | 2026-07-24 |
hxxp://62.60.226.140/files/rdx/random.exe | offline | malware_download | 2026-07-24 |
// 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 |
Here are 4 specific false positive scenarios for the URLhaus: d52f85 Malicious URLs detection rule, including suggested filters and exclusions:
Scenario: Automated Security Scanner Traffic
d52f85 signature logic while performing routine health checks.scanner-service-account) where the destination is the URLhaus API endpoint (api.urlhaus.io).Scenario: Scheduled Backup and Archiving Jobs
d52f85 cluster, the scheduled nightly backup jobs will trigger the rule despite being benign operations.VeeamBackupService.exe, commvault_agent) and restrict the alert to only fire during non-business hours if the job is known to run at 02:00 AM, or simply whitelist the destination FQDNs used by the backup gateway.Scenario: Software Update Mechanisms