This hypothesis targets the execution of the “Unknown Loader” malware, a high-severity threat that often serves as an initial foothold for further post-exploitation activities. Proactively hunting for these specific IOCs in Azure Sentinel allows the SOC to identify compromised endpoints early, potentially preventing the loader from establishing persistence or downloading additional payloads before traditional detections trigger.
Malware Family: Unknown Loader Total IOCs: 2 IOC Types: domain, sha256_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | fallport.cfd | botnet_cc | 2026-09-20 | 100% |
| sha256_hash | 9d08b2f19f1f239652d9fc41500348262101a1fb88b2f9dc1dfe93d54b73d88d | payload | 2026-09-20 | 95% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["fallport.cfd"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Unknown Loader
let malicious_hashes = dynamic(["9d08b2f19f1f239652d9fc41500348262101a1fb88b2f9dc1dfe93d54b73d88d"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DeviceFileEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
jenkins.exe, gitlab-runner, teamcity-agent) or filter for parent processes that are part of the CI/CD pipeline (e.g., java.exe running the agent).IT_Admins or Patch_Managers security group, or filter for known administrative tools like ninite.exe or powershell.exe executing from the C:\Program Files\Admin Tools directory.ThreatHunt=true or filter for parent processes that are part of the security tooling suite (e.g., splunkforwarder.exe, crowdagent.exe, or specific test harness executables).