← Back to SOC feed Coverage →

ThreatFox: Grandoreiro IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
iocthreatfoxwin-grandoreiro
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-22T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt identifies potential Grandoreiro ransomware activity by correlating known indicators of compromise with asset telemetry, targeting the initial access or lateral movement phases of the attack chain. Proactively hunting for these IOCs in Azure Sentinel is critical to detect and isolate compromised endpoints before the adversary deploys the ransomware payload and encrypts critical business data.

IOC Summary

Malware Family: Grandoreiro Total IOCs: 2 IOC Types: sha256_hash, ip:port

TypeValueThreat TypeFirst SeenConfidence
sha256_hashf47ed4ce3fb2d369dc31737419e1546abb3be79052b910e52347c05500d908abpayload2026-09-2275%
ip:port174[.]129[.]92[.]184:8809payload_delivery2026-09-2275%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Grandoreiro
let malicious_ips = dynamic(["174.129.92.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(["174.129.92.184"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Grandoreiro
let malicious_hashes = dynamic(["f47ed4ce3fb2d369dc31737419e1546abb3be79052b910e52347c05500d908ab"]);
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

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/win.grandoreiro/