This hypothesis targets adversaries leveraging known 32-bit malicious URLs to execute payloads or establish command-and-control channels, often exploiting legacy architecture vulnerabilities. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify compromised endpoints or suspicious web traffic before the malicious URLs trigger further lateral movement or data exfiltration.
Threat: 32-bit Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://42.235.55.246:45541/bin.sh | online | malware_download | 2026-09-20 |
hxxp://39.74.41.168:50927/bin.sh | online | malware_download | 2026-09-20 |
hxxp://114.227.157.16:40173/bin.sh | online | malware_download | 2026-09-20 |
hxxp://103.89.37.70:53361/i | online | malware_download | 2026-09-20 |
hxxp://182.127.111.231:55283/i | online | malware_download | 2026-09-20 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["103.89.37.70", "39.74.41.168", "114.227.157.16", "182.127.111.231", "42.235.55.246"]);
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(["103.89.37.70", "39.74.41.168", "114.227.157.16", "182.127.111.231", "42.235.55.246"]);
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 |
Java/1.8.0_202) when the destination URL matches the known 32-bit list.Dev-Team) where the source port is dynamic and the destination is a local IP (127.0.0.1) or a known internal dev proxy IP.sqlagent.exe, vss.exe, or commvault.exe when the destination URL matches the 32-bit list and the source machine is part of the Backup-Servers OU.