This hunt detects adversary behavior involving the deployment of Kraken Keylogger indicators to capture sensitive user input and credentials within the environment. The SOC team should proactively search for these specific IOCs in Azure Sentinel to identify early-stage keylogging activity that could lead to credential theft and unauthorized access before lateral movement occurs.
Malware Family: KrakenKeylogger Total IOCs: 3 IOC Types: sha1_hash, md5_hash, sha256_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha1_hash | 3bb888cb49563f907b4b1305cd3c6a1eff227a5a | payload | 2026-08-13 | 95% |
| md5_hash | f0227e480e845b98b91e385b898e9b47 | payload | 2026-08-13 | 95% |
| sha256_hash | c9548996fd7c80f449b61ab4706dce3d35307aa7215c8ff82788a513d6789e2d | payload | 2026-08-13 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - KrakenKeylogger
let malicious_hashes = dynamic(["3bb888cb49563f907b4b1305cd3c6a1eff227a5a", "f0227e480e845b98b91e385b898e9b47", "c9548996fd7c80f449b61ab4706dce3d35307aa7215c8ff82788a513d6789e2d"]);
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 |
Here are 5 specific false positive scenarios for the ThreatFox: KrakenKeylogger IOCs rule, along with suggested filters and exclusions tailored for an enterprise environment:
Endpoint Security Agent Telemetry Collection
ProcessName matches FalconSensor.exe, MsMpEng.exe, or DefenderService.exe and the ParentProcessName is a known security service (e.g., svchost.exe with specific service names).Scheduled Group Policy Updates
Initiator is identified as “System” or “NT AUTHORITY\SYSTEM” and the action involves registry modification under HKLM\Software\Policies.Remote Desktop Session Initialization