This rule detects potential compromise or reconnaissance activity by identifying traffic to known malicious URLs that have been tagged as honeypots, indicating an adversary is actively engaging with or scanning these decoy assets. Proactively hunting for these interactions in Azure Sentinel allows the SOC team to identify early-stage threats or lateral movement attempts before they escalate into a full breach.
Threat: honeypot Total URLs: 3 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://176.65.139.158/bins/ouroboros.arm | offline | malware_download | 2026-09-24 |
hxxp://176.65.139.158/bins/ouroboros.m68k | offline | malware_download | 2026-09-24 |
hxxp://176.65.139.158/bins/ouroboros.ppc | offline | malware_download | 2026-09-24 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: honeypot
let malicious_domains = dynamic(["176.65.139.158"]);
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(["176.65.139.158"]);
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 |
Automated Vulnerability Scanning and Penetration Testing
10.20.50.0/24). Additionally, exclude user agents or source ports associated with scanning tools (e.g., nessus, qualys, metasploit) if the detection rule inspects metadata.Web Application Firewall (WAF) and Load Balancer Health Checks
svc-healthcheck, svc-monitoring). Filter out requests where the User-Agent contains kube-probe, healthcheck, or synthetic-monitor.CI/CD Pipeline Dependency Scanning and Artifact Verification