This hypothesis targets adversary activity where malicious URLs associated with the IRAHook malware family are accessed to establish command-and-control channels or facilitate data exfiltration. Proactively hunting for these indicators in Azure Sentinel allows the SOC team to identify compromised endpoints and interrupt the malware’s persistence and payload execution before significant data is stolen.
Threat: IRAHook Total URLs: 3 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://www.dropbox.com/scl/fi/009nxx0xkux526vu7wcx1/bundle.zip?rlkey=cee2afu0dnfxnuaean6zzynzb&st=av0cds1z&dl=1 | offline | malware_download | 2026-09-24 |
hxxps://www.dropbox.com/scl/fi/pwrcc3tclhkx8db0t5lkx/bundle.zip?rlkey=9sthi6gywhchu1d33hh62coav&st=u76vvcsj&dl=1 | offline | malware_download | 2026-09-24 |
hxxps://www.dropbox.com/scl/fi/nw9hx3i6ti0xb15xxw4qf/bundle.zip?rlkey=p6436gdqevzgf24q35t5o1w2s&st=9qej4px8&dl=1 | offline | malware_download | 2026-09-24 |
// 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 |
SAP-Logon/7.50) or where the source process is a known signed binary from that vendor (e.g., saplogon.exe).Invoke-WebRequest or curl calls will trigger the alert.
powershell.exe or cmd.exe and the command line contains specific keywords like -Patch, -Update, or -Config, or where the source IP is within the corporate internal range (e.g., 10.0.0.0/8).DEV-TESTING or where the source process is a development IDE (e.g., code.exe, idea64.exe, pycharm64.exe).