Hunt package for 5 malicious URLs tagged as elf
Threat: elf Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://45.135.194.27/arm7 | online | malware_download | 2026-03-19 |
hxxp://45.135.194.27/mips | online | malware_download | 2026-03-19 |
hxxp://45.135.194.27/arm5 | online | malware_download | 2026-03-19 |
hxxp://45.135.194.27/mpsl | online | malware_download | 2026-03-19 |
hxxp://45.135.194.27/arm4 | online | malware_download | 2026-03-19 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["45.135.194.27"]);
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(["45.135.194.27"]);
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 |