This detection identifies active communication with known botnet command-and-control domains by monitoring traffic against a curated list of five malicious URLs from URLhaus. Proactively hunting for this behavior in Azure Sentinel is critical to rapidly isolate compromised endpoints and disrupt botnet propagation before adversaries can establish persistent network footholds or exfiltrate sensitive data.
Threat: botnetdomain Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://dsgagfsahkfsahfjs.shop/zero.armv6l | online | malware_download | 2026-07-27 |
hxxp://dsgagfsahkfsahfjs.shop/zero.powerpc | online | malware_download | 2026-07-27 |
hxxp://dsgagfsahkfsahfjs.shop/zero.sh4 | online | malware_download | 2026-07-27 |
hxxp://dsgagfsahkfsahfjs.shop/zero.sparc | online | malware_download | 2026-07-27 |
hxxp://dsgagfsahkfsahfjs.shop/zero.armv5l | online | malware_download | 2026-07-27 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: botnetdomain
let malicious_domains = dynamic(["dsgagfsahkfsahfjs.shop"]);
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(["dsgagfsahkfsahfjs.shop"]);
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: botnetdomain Malicious URLs rule, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Automated Security Scanner Traffic
10.20.50.x) or filter out requests where the User-Agent string contains keywords like “Tenable,” “Qualys,” or “Rapid7.”Scenario: Scheduled Endpoint Protection Updates
02:00 – 04:00 UTC). Alternatively, exclude specific process names associated with the update engine, such as C-Update.exe or SentinelOneAgent.exe.Scenario: Cloud Backup and Synchronization Services