This hunt detects adversary activity where endpoints interact with malicious URLs identified by URLhaus as part of the HypeAgent campaign, which often targets financial and enterprise sectors through phishing or drive-by downloads. The SOC team should proactively investigate these interactions in Azure Sentinel to identify early-stage compromises and prevent potential lateral movement or data exfiltration associated with this specific threat actor’s infrastructure.
Threat: HypeAgent Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://lavos.life/bothways/stego_tm92fbepbu.png | online | malware_download | 2026-08-27 |
hxxps://files.catbox.moe/3j9gfp.png | online | malware_download | 2026-08-27 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: HypeAgent
let malicious_domains = dynamic(["files.catbox.moe", "lavos.life"]);
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(["files.catbox.moe", "lavos.life"]);
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 for the URLhaus: HypeAgent Malicious URLs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Security Scanning by EDR Agents
Process Name (e.g., C:\Program Files\CrowdStrike\fs_qr.exe) and User Account (e.g., SYSTEM or specific service accounts like svc-edr-updater). Exclude these processes from triggering this specific URLhaus alert.Scenario: Scheduled Backup and Cloud Sync Operations
*.veeam.com, *.office365.com) when initiated by known backup service accounts (e.g., svc-backup-admin). Additionally, exclude traffic occurring during defined maintenance windows (e.g., 02:00–04:00 UTC) for these specific processes.Scenario: Third-Party SaaS Integration Webhooks