← Back to SOC feed Coverage →

URLhaus: adb 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-05-22T11:00:00Z · Confidence: medium

Hunt Hypothesis

Adversaries may use adb-related malicious URLs to exfiltrate data or establish command and control channels, leveraging compromised endpoints to move laterally within a network. SOC teams should proactively hunt for these URLs in Azure Sentinel to identify and mitigate potential data exfiltration and C2 activities early.

IOC Summary

Threat: adb Total URLs: 15 Active URLs: 15

URLStatusThreatDate Added
hxxp://89.32.41.16/bins/x86_64onlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/spconlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/arm7onlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/i686onlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/sh4onlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/arm4onlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/arm5onlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/i486onlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/arm6onlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/ppconlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/arconlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/mpslonlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/x86onlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/mipsonlinemalware_download2026-05-22
hxxp://89.32.41.16/bins/m68konlinemalware_download2026-05-22

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: adb
let malicious_domains = dynamic(["89.32.41.16"]);
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(["89.32.41.16"]);
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/