This hunt targets adversary behavior where endpoints access known AgentTesla malicious URLs to deploy information stealing malware that captures keystrokes and screenshots. Proactively hunting these specific indicators in Azure Sentinel is critical because early detection of AgentTesla activity allows the SOC team to isolate compromised hosts before sensitive credentials and user data are exfiltrated.
Threat: AgentTesla Total URLs: 3 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://specsaversllc.online/mrkelly13/qk3FhjayJfgjjLonmTMtgt9pw6hrKmMImzjw2eqKGsHqMovE.js | online | malware_download | 2026-07-13 |
hxxp://204.44.93.68/img/img_013554.png | online | malware_download | 2026-07-13 |
hxxp://204.44.93.68/20/gooddressingskillgoofforme.hta | offline | malware_download | 2026-07-13 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: AgentTesla
let malicious_domains = dynamic(["specsaversllc.online", "204.44.93.68"]);
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(["specsaversllc.online", "204.44.93.68"]);
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 four specific false positive scenarios for the URLhaus: AgentTesla Malicious URLs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Management Software Updates
svc_sccm_agent or IvantiService) and whitelist the known vendor domain (e.g., downloads.vendor-software.com) if confirmed benign via a sandbox analysis.Automated Patch Management Scans
02:00 - 04:00 UTC) or filter out URLs containing standard API query parameters typical of patch scanning tools (e.g., ?action=scan&version=v3).IT Helpdesk and Remote Support Sessions