This hunt targets the execution of known malicious URLs associated with the IRAHook malware family, which adversaries may leverage to deploy payloads or establish initial footholds in the environment. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify compromised endpoints or web traffic patterns before the malware can propagate or exfiltrate data, reducing the mean time to detection for this high-severity threat.
Threat: IRAHook Total URLs: 12 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://www.dropbox.com/scl/fi/33y57unilqja9sxqzhyki/bundle.zip?rlkey=kgnkuy4ihjn8zss1nh74uylbv&st=wxwi7yny&dl=1 | offline | malware_download | 2026-09-26 |
hxxps://www.dropbox.com/scl/fi/khxlymu7t3mgjcjytdd48/bundle-1.zip?rlkey=dfefw2yzf80lihi08bq5k1v8t&st=29kbm2at&dl=1 | offline | malware_download | 2026-09-26 |
hxxps://www.dropbox.com/scl/fi/qpsijoedo7r988ml59def/bundle.zip?rlkey=wyjbuo8o3r6mo5kjwbq46x0kl&st=0x4mo48m&dl=1 | offline | malware_download | 2026-09-26 |
hxxps://www.dropbox.com/scl/fi/s4zjz1y25emfaxiq6747b/bundle.zip?rlkey=uw77vyphk9x7arzdq7xewxqsk&st=y1ghswbc&dl=1 | offline | malware_download | 2026-09-26 |
hxxps://www.dropbox.com/scl/fi/jrusvw8vgvcrxj8w56ge9/bundle.zip?rlkey=1pn3arkl40jj8n4lwqt49w28b&st=216v9t1g&dl=1 | offline | malware_download | 2026-09-26 |
hxxps://www.dropbox.com/scl/fi/11z4l0637j8xsrn8s4tj3/bundle.zip?rlkey=4117yuxej52xcagkttllsqtt6&st=46msfj7j&dl=1 | offline | malware_download | 2026-09-26 |
hxxps://www.dropbox.com/scl/fi/elby8kwbs1ax11253l3u2/bundle.zip?rlkey=bzfbkl7hy8pmhlqkar633ggcn&st=ryphibm7&dl=1 | offline | malware_download | 2026-09-26 |
hxxps://www.dropbox.com/scl/fi/6k6kqva1019l040dc60wf/bundle-4.zip?rlkey=tigrp2c6bp3smhvyw9qx3ytkj&st=h2xfky2a&dl=1 | offline | malware_download | 2026-09-26 |
hxxps://www.dropbox.com/scl/fi/b9zfqqcoatex5jm98fkad/bundle-2.zip?rlkey=0956h9tdsf45sfm4ghn744r1b&st=o9p4o6ok&dl=1 | offline | malware_download | 2026-09-26 |
hxxps://www.dropbox.com/scl/fi/bsxrwl4mspjiz9yvennrf/bundle.zip?rlkey=3vltee279k0en7a09m9qe2455&st=q7ldy0pr&dl=1 | offline | malware_download | 2026-09-26 |
hxxps://www.dropbox.com/scl/fi/8is1pt3r1qxrn9odhqg47/bundle.zip?rlkey=864oxk0wdupwhs8rrbz455oon&st=b6a6q2bp&dl=1 | offline | malware_download | 2026-09-26 |
hxxps://www.dropbox.com/scl/fi/tklxedrkb4s9qfq57rs1e/bundle.zip?rlkey=p446wf511qzdp2e87avxjxge9&st=qaesz4kr&dl=1 | offline | malware_download | 2026-09-26 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: IRAHook
let malicious_domains = dynamic(["www.dropbox.com"]);
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(["www.dropbox.com"]);
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 |
Scenario: A security team or incident response (IR) engineer manually opens a known malicious URL in a browser to verify the payload, check headers, or capture network traffic for forensics. This is often done in a controlled environment or with specific browser extensions that log requests.
SecurityOps or IRTeam security group, or filter out traffic where the destination IP is a known internal analysis proxy (e.g., 10.20.30.40) that intercepts and logs the request before it hits the internet.Scenario: An automated vulnerability scanner or web application security tool (such as Nessus, Qualys, or Acunetix) performs active scanning and probes known malicious endpoints to verify if the asset is still vulnerable or to map the attack surface. These tools frequently hit URLhaus-listed domains during their “active scan” phase.
svc-nessus, svc-qualys) or from known IP ranges designated for scanning appliances. Additionally, filter out events where the User-Agent string contains identifiable scanner signatures (e.g., Nessus, Qualys, Acunetix).Scenario: A developer or DevOps engineer is testing a new URL shortening service, a content delivery network (CDN) configuration, or a redirect chain in a staging environment. They may intentionally use a URL listed on URLhaus as a test case to ensure their logging, blocking, or redirect logic works correctly.
Staging or Dev environment subnet (e.g., 172.16.0.0/16), or filter out