← Back to SOC feed Coverage →

URLhaus: cowrie Malicious URLs

ioc-hunt HIGH URLhaus
CommonSecurityLogDnsEvents
iocurlhaus
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at URLhaus →
Retrieved: 2026-09-09T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets the execution of known malicious payloads associated with the Cowrie honeypot framework, which adversaries frequently use to deploy backdoors or establish initial footholds in compromised environments. Proactively hunting for these specific URLs in Azure Sentinel allows the SOC to identify potential lateral movement or persistence mechanisms before they mature into full-blown intrusions, leveraging high-fidelity threat intelligence to reduce mean time to detection.

IOC Summary

Threat: cowrie Total URLs: 5 Active URLs: 5

URLStatusThreatDate Added
hxxp://176.65.139.235/order.mipsonlinemalware_download2026-09-09
hxxp://176.65.139.235/cat.shonlinemalware_download2026-09-09
hxxp://176.65.139.235/order.armv4lonlinemalware_download2026-09-09
hxxp://176.65.139.235/order.x86_32onlinemalware_download2026-09-09
hxxp://176.65.139.235/order.mipselonlinemalware_download2026-09-09

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: cowrie
let malicious_domains = dynamic(["176.65.139.235"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc

KQL: Url Proxy Hunt

// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["176.65.139.235"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://urlhaus.abuse.ch/