This hypothesis targets the execution of AgentTesla, a remote access trojan (RAT) known for stealing credentials and enabling persistent backdoor access, by identifying traffic to known malicious URLs. Proactively hunting for these indicators in Azure Sentinel allows the SOC to detect compromised endpoints early, preventing lateral movement and data exfiltration before the adversary establishes full control.
Threat: AgentTesla Total URLs: 3 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://pub-72295f71e45d431995028c79cf261dae.r2.dev/tyjtyujtyuj.png | offline | malware_download | 2026-09-13 |
hxxps://pub-72295f71e45d431995028c79cf261dae.r2.dev/dfghrth.png | offline | malware_download | 2026-09-13 |
hxxps://pub-c6d653e19fd545129fdfd7d6f8cd8b17.r2.dev/fyhty.hta | offline | malware_download | 2026-09-13 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: AgentTesla
let malicious_domains = dynamic(["pub-c6d653e19fd545129fdfd7d6f8cd8b17.r2.dev", "pub-72295f71e45d431995028c79cf261dae.r2.dev"]);
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(["pub-c6d653e19fd545129fdfd7d6f8cd8b17.r2.dev", "pub-72295f71e45d431995028c79cf261dae.r2.dev"]);
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 |
sapgui.exe, internal_tool.exe) from the URL detection rule, or whitelist the specific user agent string if the detection relies on HTTP headers.Maintenance, HealthCheck, or LogCollection, or filter by the specific service account used for these jobs (e.g., svc-maintenance).chrome.exe, msedge.exe, or firefox.exe if the detection is process-based, or filter by the TabRestored event type in browser telemetry if available.Dev or QA security groups