This detection rule identifies adversary behavior where endpoints access known malicious 32-bit URLs from the URLhaus threat intelligence feed, indicating potential initial compromise or command-and-control activity. A proactive hunt is essential in Azure Sentinel to rapidly isolate affected systems and prevent lateral movement before attackers can exploit legacy 32-bit application vulnerabilities.
Threat: 32-bit Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://110.36.75.82:45777/i | online | malware_download | 2026-08-17 |
hxxp://113.228.208.46:56903/bin.sh | online | malware_download | 2026-08-17 |
hxxp://125.41.72.148:43605/i | online | malware_download | 2026-08-17 |
hxxp://110.36.75.82:45777/bin.sh | online | malware_download | 2026-08-17 |
hxxp://115.48.37.12:47625/i | online | malware_download | 2026-08-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["115.48.37.12", "125.41.72.148", "113.228.208.46", "110.36.75.82"]);
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(["115.48.37.12", "125.41.72.148", "113.228.208.46", "110.36.75.82"]);
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: 32-bit Malicious URLs detection rule, including targeted filters and exclusions:
Legacy Application Updates via Scheduled Tasks
schtasks.exe to poll a vendor’s update server. The vendor hosts their update manifest on a 32-bit optimized endpoint that URLhaus flags as “suspicious” due to low reputation, despite being a trusted partner.LegacyInventoryUpdate) and exclude the vendor’s domain (e.g., updates.trusted-vendor.com) from the URLhaus 32-bit tag logic if the source process is a known service account.Microsoft Office Click-to-Run Background Telemetry
OfficeClickToRun.exe) initiates background telemetry and license validation calls to office.microsoft.com. Since many Office components run as 32-bit processes even on 64-bit OS, these legitimate health check URLs are frequently tagged by URLhaus as potential 32-bit malicious vectors.C:\Program Files\Microsoft Office\root\Office16\ and filter out any URL containing office.microsoft.com or go.microsoft.com when the initiating process is identified as a Microsoft-signed executable.Antivirus Definition Updates (32-bit Components)