← Back to SOC feed Coverage →

ThreatFox: Ngioweb IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
elf-ngiowebiocthreatfox
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-09-20T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of Ngioweb IOCs to identify potential web shell deployments or compromised endpoints that adversaries may use for persistent access and command execution. Proactively hunting for these indicators in Azure Sentinel is critical because Ngioweb is a known web shell often leverized for initial access and lateral movement, allowing the SOC to detect and isolate compromised assets before they are fully exploited.

IOC Summary

Malware Family: Ngioweb Total IOCs: 5 IOC Types: url, sha256_hash, ip:port

TypeValueThreat TypeFirst SeenConfidence
sha256_hash1631e63ee373601c1f42f2674f996fc6c14dc6aebe45ca5d2395bf347a0e3661payload2026-09-20100%
sha256_hash1b831a9366cd53a4127f885dab247bc2f0b3f661a7d9d9510bbd0a9f150bfb27payload2026-09-20100%
sha256_hash52bff4bf58eb6031c16763b12b696e849a38f36e69c55402a444819cb9c1bc0epayload2026-09-20100%
urlhxxp://118[.]145[.]196[.]225:800/payload_delivery2026-09-20100%
ip:port145[.]249[.]115[.]184:3478botnet_cc2026-09-2075%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Ngioweb
let malicious_ips = dynamic(["145.249.115.184"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["145.249.115.184"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Ngioweb
let malicious_urls = dynamic(["http://118.145.196.225:800/"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Ngioweb
let malicious_hashes = dynamic(["1631e63ee373601c1f42f2674f996fc6c14dc6aebe45ca5d2395bf347a0e3661", "1b831a9366cd53a4127f885dab247bc2f0b3f661a7d9d9510bbd0a9f150bfb27", "52bff4bf58eb6031c16763b12b696e849a38f36e69c55402a444819cb9c1bc0e"]);
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

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/elf.ngioweb/