This hunt identifies potential compromise vectors where endpoints interact with known 32-bit malicious URLs, indicating the execution of legacy or architecture-specific malware payloads that may bypass modern 64-bit defenses. Proactively hunting for these indicators in Azure Sentinel allows the SOC to detect early-stage infections or lateral movement attempts before they escalate into broader network impacts.
Threat: 32-bit Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://60.19.240.247:53768/bin.sh | online | malware_download | 2026-09-14 |
hxxp://182.122.233.74:49867/bin.sh | online | malware_download | 2026-09-14 |
hxxp://121.234.172.138:55963/i | online | malware_download | 2026-09-14 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["60.19.240.247", "121.234.172.138", "182.122.233.74"]);
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(["60.19.240.247", "121.234.172.138", "182.122.233.74"]);
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 |
sapgui.exe, erp_client32.exe) or where the command line contains specific arguments like /config or /license.svchost.exe (specifically the netsvcs or LocalService group) or powershell.exe with a command line matching known maintenance script paths (e.g., C:\Scripts\Maintenance\sync_db.ps1).Dev-Test-VMs) or exclude processes where the user context is a known developer account and the process is a browser or test harness (e.g., chrome.exe, test_client32.exe).