This hypothesis targets the execution of 32-bit malicious payloads delivered via known URLhaus entries, indicating an adversary attempting to compromise legacy or mixed-architecture endpoints through direct web-based delivery. Proactively hunting for these specific URLs in Azure Sentinel allows the SOC to identify early-stage intrusions and lateral movement vectors that may evade standard signature-based detections, particularly in environments where 32-bit applications remain prevalent.
Threat: 32-bit Total URLs: 13 Active URLs: 13
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://61.54.41.118:40394/i | online | malware_download | 2026-09-10 |
hxxp://115.55.151.48:39130/i | online | malware_download | 2026-09-10 |
hxxp://115.55.151.48:39130/bin.sh | online | malware_download | 2026-09-10 |
hxxp://182.113.28.110:45510/i | online | malware_download | 2026-09-10 |
hxxp://123.4.249.119:44171/i | online | malware_download | 2026-09-10 |
hxxp://101.74.52.251:15884/i | online | malware_download | 2026-09-10 |
hxxp://101.74.52.251:15884/bin.sh | online | malware_download | 2026-09-10 |
hxxp://182.126.103.229:37256/i | online | malware_download | 2026-09-10 |
hxxp://115.53.247.98:42289/i | online | malware_download | 2026-09-10 |
hxxp://119.73.59.113:51110/bin.sh | online | malware_download | 2026-09-10 |
hxxp://115.53.247.98:42289/bin.sh | online | malware_download | 2026-09-10 |
hxxp://182.126.103.229:37256/bin.sh | online | malware_download | 2026-09-10 |
hxxp://42.228.245.61:34804/i | online | malware_download | 2026-09-10 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["182.126.103.229", "119.73.59.113", "61.54.41.118", "115.55.151.48", "42.228.245.61", "101.74.52.251", "182.113.28.110", "123.4.249.119", "115.53.247.98"]);
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(["182.126.103.229", "119.73.59.113", "61.54.41.118", "115.55.151.48", "42.228.245.61", "101.74.52.251", "182.113.28.110", "123.4.249.119", "115.53.247.98"]);
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 |
Mozilla/5.0 (compatible; LegacyERP/2.0)) or restrict the exclusion to the specific process binary (e.g., LegacyApp32.exe) initiating the request.telemetry_agent_32.exe or svc_monitor.exe) where the destination port is standard HTTP/HTTPS (80/443) and the URL path matches the expected telemetry endpoint structure (e.g., /api/v1/metrics).chrome.exe, firefox.exe) and the event type is “Cache Validation” or “Prefetch,” or filter out URLs that have not been actively clicked/