This hypothesis targets adversaries leveraging 32-bit malicious URLs to execute payloads or establish command-and-control channels, often exploiting legacy or mixed-architecture environments. Proactively hunting for these indicators in Azure Sentinel is critical to identify potential lateral movement or initial access vectors before they mature into full-blown compromises.
Threat: 32-bit Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://39.40.158.41:50979/i | offline | malware_download | 2026-09-09 |
hxxp://210.208.111.2:34156/i | online | malware_download | 2026-09-09 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["210.208.111.2"]);
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(["210.208.111.2"]);
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 |
Legacy 32-bit Application Updates via HTTP
*.vendor-legacy.com) or the specific IP address range associated with the legacy update server, provided it is verified as a known internal or trusted external endpoint.Scheduled Job for 32-bit Driver/Plugin Downloads
Update32BitDrivers.ps1) runs on a fleet of Windows 10/11 machines to download specific 32-bit drivers or plugins (e.g., for legacy scanners or audio devices) from a third-party repository. If the repository URL is briefly flagged by URLhaus (e.g., due to a CDN edge node compromise), the download attempt triggers the detection.https://cdn.third-party-repo.com/drivers/32bit/) or the user account running the scheduled task (e.g., DOMAIN\svc-driver-update) if the download is initiated by a service account rather than an interactive user.Browser Cache/History Access by 32-bit Browser