This hunt targets adversary behavior where compromised hosts initiate outbound connections to a specific cluster of ten known malicious URLs identified by URLhaus under the 91-92-40-15 tag. Proactively hunting for these indicators in Azure Sentinel is critical because early detection of this high-severity activity can prevent data exfiltration and lateral movement before the threat escalates into a broader incident.
Threat: 91-92-40-15 Total URLs: 10 Active URLs: 10
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.40.15/zero.sh4 | online | malware_download | 2026-07-17 |
hxxp://91.92.40.15/zero.aarch64 | online | malware_download | 2026-07-17 |
hxxp://91.92.40.15/zero.armv4l | online | malware_download | 2026-07-17 |
hxxp://91.92.40.15/zero.armv7l | online | malware_download | 2026-07-17 |
hxxp://91.92.40.15/zero.armv6l | online | malware_download | 2026-07-17 |
hxxp://91.92.40.15/zero.i486 | online | malware_download | 2026-07-17 |
hxxp://91.92.40.15/zero.mipsel | online | malware_download | 2026-07-17 |
hxxp://91.92.40.15/zero.powerpc | online | malware_download | 2026-07-17 |
hxxp://91.92.40.15/zero.mips | online | malware_download | 2026-07-17 |
hxxp://91.92.40.15/zero.x86 | online | malware_download | 2026-07-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 91-92-40-15
let malicious_domains = dynamic(["91.92.40.15"]);
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(["91.92.40.15"]);
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 3-5 specific false positive scenarios for the URLhaus: 91-92-40-15 Malicious URLs detection rule, including suggested filters and exclusions tailored for a legitimate enterprise environment.
Scenario 1: Automated Security Scanner Probes
Exclude IF Source_IP IN [10.x.x.x, 172.16.x.x] AND Process_Name IN ['Nessus.exe', 'QualysAgent.exe'].Scenario 2: Scheduled Endpoint Definition Updates
Cortex.exe, S1Service.exe) connects to the URLhaus feed server to download threat signatures. The specific IP range 91-92-40-15 is often used as a staging or mirror node for these feeds, triggering the alert during routine maintenance windows (e.g., every Sunday at 02:00 UTC).