← Back to SOC feed Coverage →

ThreatFox: TELEPUZ IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
iocthreatfoxwin-telepuz
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-08-21T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary behavior involving the deployment of TELEPUZ malware by monitoring for specific indicators of compromise such as malicious file hashes and network connections. A SOC team should proactively hunt for these signals in Azure Sentinel to identify early-stage infections that leverage this banking trojan’s capabilities for credential theft and remote access, ensuring rapid containment before lateral movement occurs.

IOC Summary

Malware Family: TELEPUZ Total IOCs: 4 IOC Types: url, domain

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://krem.mesoptik.com/v3/telemetrybotnet_cc2026-08-21100%
urlhxxps://krem.mesoptik.com/v3/reportbotnet_cc2026-08-21100%
urlhxxps://krem.mesoptik.com/ws/stealerbotnet_cc2026-08-21100%
domainkrem.mesoptik.combotnet_cc2026-08-21100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - TELEPUZ
let malicious_domains = dynamic(["krem.mesoptik.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - TELEPUZ
let malicious_urls = dynamic(["https://krem.mesoptik.com/v3/telemetry", "https://krem.mesoptik.com/v3/report", "https://krem.mesoptik.com/ws/stealer"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios and corresponding exclusion strategies for the ThreatFox: TELEPUZ IOCs detection rule:

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