This detection identifies adversary activity involving web traffic to a specific set of 17 malicious URLs flagged by URLhaus under the identifier 94-154-43-44, which often indicates early-stage reconnaissance or command-and-control communication. The SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent potential data exfiltration before lateral movement occurs across the network.
Threat: 94-154-43-44 Total URLs: 17 Active URLs: 17
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://94.154.43.44/bins/bin.armv4eb | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.armv6l | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.x86_64 | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.i586 | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.armv7l | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.i486 | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.powerpc | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.mips64 | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.mipsel | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.sh4 | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.m68k | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.armv4tl | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.armv4l | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.i686 | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.mips | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.armv5l | online | malware_download | 2026-08-06 |
hxxp://94.154.43.44/bins/bin.powerpc-440fp | online | malware_download | 2026-08-06 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 94-154-43-44
let malicious_domains = dynamic(["94.154.43.44"]);
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(["94.154.43.44"]);
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 3–5 specific false positive scenarios and corresponding filters for the URLhaus: 94-154-43-44 Malicious URLs detection rule in a legitimate enterprise environment:
Scheduled Cloud Backup Agent Scans
https://urlhaus-api.abuse.ch/v1/urls which matches the detection logic for the specific hash signature associated with 94-154-43-44, triggering a false alert during nightly maintenance windows.svc_backup_agent) or restrict the rule to exclude requests targeting the known URLhaus API endpoint (urlhaus-api.abuse.ch) when the destination port is 443 and the user agent contains “Veeam” or “Rubrik”.Endpoint Security Policy Updates
FalconSensor.exe or MsMpEng.exe and the destination domain is part of the trusted threat intelligence provider list (e.g., *.abuse.ch). Alternatively, whitelist the specific IP address