This detection rule identifies potential unknown malware infections by correlating nine specific Indicators of Compromise (IOCs) that may represent emerging threats not yet covered by existing signature-based defenses. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly detect and contain novel malicious activity before it escalates, ensuring the organization maintains resilience against evolving attack vectors that traditional rules might miss.
Malware Family: Unknown malware Total IOCs: 9 IOC Types: domain, url, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://befaes.mom/ | payload_delivery | 2026-08-14 | 90% |
| ip:port | 43[.]143[.]118[.]200:22 | botnet_cc | 2026-08-14 | 100% |
| ip:port | 43[.]143[.]118[.]200:8888 | botnet_cc | 2026-08-14 | 100% |
| domain | sigmagranni1.fun | botnet_cc | 2026-08-14 | 100% |
| domain | bratibobotito.fun | botnet_cc | 2026-08-14 | 100% |
| ip:port | 45[.]77[.]75[.]145:3000 | botnet_cc | 2026-08-14 | 100% |
| ip:port | 178[.]16[.]55[.]227:9000 | botnet_cc | 2026-08-14 | 100% |
| ip:port | 79[.]133[.]42[.]25:8888 | botnet_cc | 2026-08-14 | 100% |
| ip:port | 38[.]76[.]165[.]176:5000 | botnet_cc | 2026-08-14 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["43.143.118.200", "79.133.42.25", "38.76.165.176", "45.77.75.145", "178.16.55.227"]);
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(["43.143.118.200", "79.133.42.25", "38.76.165.176", "45.77.75.145", "178.16.55.227"]);
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(["sigmagranni1.fun", "bratibobotito.fun"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Unknown malware
let malicious_urls = dynamic(["https://befaes.mom/"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the ThreatFox: Unknown malware IOCs rule, detailing legitimate enterprise activities that may trigger alerts along with recommended filters or exclusions:
Software Deployment via SCCM/Intune Pushing New Binaries
*.msi, *.exe from the C:\Windows\CCM\ or C:\Program Files\Microsoft Intune Agent\ directories) if they are executed by the ccmsetup.exe or IntuneAgent.exe parent process.Scheduled PowerShell Script Execution for Data Backups
Backup-Database.ps1) that invokes external tools like mysqldump or proprietary backup agents. These scripts often generate temporary executables or call specific DLLs with hashes that are unique to the internal environment and not yet cataloged in ThreatFox, triggering an “Unknown IOCs” alert during the maintenance window (e.g., 02:00 – 04:00).C:\Scripts\Backup\) when executed by the Task Scheduler service (`sv