This hunt targets adversary behavior characterized by the execution of unknown malware artifacts identified through nine specific Indicators of Compromise (IOCs) that may evade standard signature-based defenses. Proactively hunting for these IOCs within Azure Sentinel is critical to detect early-stage lateral movement or data exfiltration attempts before they escalate into confirmed security incidents.
Malware Family: Unknown malware Total IOCs: 9 IOC Types: sha256_hash, domain, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 38[.]207[.]176[.]218:7443 | botnet_cc | 2026-07-10 | 75% |
| ip:port | 179[.]43[.]149[.]253:7443 | botnet_cc | 2026-07-10 | 75% |
| domain | authorization-press-enter.info | payload_delivery | 2026-07-10 | 100% |
| ip:port | 137[.]220[.]194[.]138:8888 | botnet_cc | 2026-07-10 | 100% |
| ip:port | 54[.]158[.]27[.]132:31337 | botnet_cc | 2026-07-10 | 50% |
| sha256_hash | 3ff6b2e928215ef498bd4c0e6157692ca352202a68f4aa01f48bace5b059a5d3 | payload | 2026-07-10 | 75% |
| sha256_hash | 7c8fc17802ae0c7ffed37f708b50f9184cd2f3c35c52130104eaf32a3e2dc1ac | payload | 2026-07-10 | 75% |
| ip:port | 186[.]241[.]104[.]39:8888 | botnet_cc | 2026-07-10 | 100% |
| ip:port | 101[.]34[.]222[.]38:8080 | botnet_cc | 2026-07-09 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["186.241.104.39", "179.43.149.253", "137.220.194.138", "101.34.222.38", "54.158.27.132", "38.207.176.218"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["186.241.104.39", "179.43.149.253", "137.220.194.138", "101.34.222.38", "54.158.27.132", "38.207.176.218"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown malware
let malicious_domains = dynamic(["authorization-press-enter.info"]);
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 malware
let malicious_hashes = dynamic(["3ff6b2e928215ef498bd4c0e6157692ca352202a68f4aa01f48bace5b059a5d3", "7c8fc17802ae0c7ffed37f708b50f9184cd2f3c35c52130104eaf32a3e2dc1ac"]);
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 |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceFileEvents | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the ThreatFox: Unknown malware IOCs rule, including suggested filters and exclusions tailored for an enterprise environment:
Endpoint Protection Scanning of Large Data Repositories
\\FileServer\DevAssets share. This directory contains thousands of legacy installer files, test binaries, and unsigned scripts generated by internal developers that are not yet in the ThreatFox global database but are benign. The detection logic flags these as “Unknown” due to their lack of reputation data.10.20.45.0/24 (Dev File Server) during the maintenance window (Sundays 02:00–06:00 UTC). Additionally, add a whitelist for file paths containing \DevAssets\Legacy\.Automated Patch Deployment via Configuration Management
.msi packages from internal repositories. Since these artifacts are dynamically generated for each cycle, they often lack the established reputation required to pass the “Unknown malware” check immediately upon execution on endpoint agents.ansible-playbook.exe, ccmexec.exe, or powershell.exe when the parent process is running under the SYSTEM account with a specific command line argument containing -Tag:PatchDeployment.CI/CD Pipeline Artifact Execution