← Back to SOC feed Coverage →

ThreatFox: Loki Password Stealer (PWS) IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsUrlClickEvents
infostealeriocthreatfoxwin-lokipws
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-06-13T11:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: Loki Password Stealer (PWS) IOCs detect adversary behavior involving the exfiltration of credentials through a known password-stealing tool, indicating potential compromise of sensitive accounts. SOC teams should proactively hunt for these IOCs in Azure Sentinel to identify and mitigate lateral movement and data exfiltration attempts early in the attack lifecycle.

IOC Summary

Malware Family: Loki Password Stealer (PWS) Total IOCs: 4 IOC Types: url, sha256_hash, sha1_hash, md5_hash

TypeValueThreat TypeFirst SeenConfidence
md5_hasha1e49c1cf7db97c042a5e5403fed0c79payload2026-06-1395%
sha256_hashf2cbfb04c06d7a29349769b1c9b2c5c6b9b34f1d9f827d89b444016069f36656payload2026-06-1395%
sha1_hash6eaf280a71db28b3557ebed4073412a6357f08c8payload2026-06-1395%
urlhxxp://abscete.info/ret/two/fre.phpbotnet_cc2026-06-13100%

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Loki Password Stealer (PWS)
let malicious_urls = dynamic(["http://abscete.info/ret/two/fre.php"]);
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 - Loki Password Stealer (PWS)
let malicious_hashes = dynamic(["a1e49c1cf7db97c042a5e5403fed0c79", "f2cbfb04c06d7a29349769b1c9b2c5c6b9b34f1d9f827d89b444016069f36656", "6eaf280a71db28b3557ebed4073412a6357f08c8"]);
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
DeviceFileEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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