This detection identifies adversary activity involving malicious URLs associated with the Formbook campaign, which are known to deliver targeted phishing or malware payloads via compromised web links. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate affected endpoints and prevent potential data exfiltration or lateral movement before broader network compromise occurs.
Threat: Formbook Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://somostask.co/Candy.png | online | malware_download | 2026-08-20 |
hxxps://wylkpznq.xyz/hukl/cp/bin.exe | online | malware_download | 2026-08-20 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Formbook
let malicious_domains = dynamic(["wylkpznq.xyz", "somostask.co"]);
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(["wylkpznq.xyz", "somostask.co"]);
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 4 specific false positive scenarios for the URLhaus: Formbook Malicious URLs detection rule, including tailored filters and exclusions:
Scheduled Backup Jobs to Cloud Storage Gateways
Source_IP IN [10.50.20.0/24] AND User_Agent CONTAINS "VeeamBackupAgent").Third-Party HR and Onboarding Portals
Destination_Domain IN ["*.workday.com", "*.bamboohr.net"]) and restrict the rule to only alert if the user is not part of the “HR_Admin” or “Onboarding_Staff” security groups.DevOps CI/CD Pipeline Artifact Downloads