This detection rule identifies adversary behavior where malware is delivered via phishing emails or compromised domains to exfiltrate sensitive data and establish system persistence. A proactive hunt in Azure Sentinel is essential to rapidly identify these initial access vectors and prevent lateral movement before attackers can secure long-term footholds within the environment.
Threat: 3 Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://femade.co.uk/wp-content/uploads/QW1.exe | online | malware_download | 2026-08-27 |
hxxps://weybli.com/QW1.exe | offline | malware_download | 2026-08-27 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 3
let malicious_domains = dynamic(["femade.co.uk"]);
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(["femade.co.uk"]);
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: Automated Cloud Backup and Synchronization
svc-veeam-backup, svc-onedrive-sync) connecting to known cloud provider IP ranges or whitelisted domains (e.g., *.sharepoint.com, *.veeam.com).Scenario: Scheduled Security Scans and Patch Management
Task Scheduler: SCCM_Updates) where the destination URL matches known vendor update servers (e.g., *.microsoft.com, *.qualys.com).Scenario: Legitimate Phishing Simulation and Training