← Back to SOC feed Coverage →

ThreatFox: Unknown malware IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsDnsEventsUrlClickEvents
iocthreatfoxunknown
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-04-24T09:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: Unknown malware IOCs rule detects potential adversary activity involving previously unidentified malicious indicators, suggesting the presence of unknown malware in the environment. SOC teams should proactively hunt for these IOCs in Azure Sentinel to identify and mitigate advanced threats that evade traditional detection methods.

IOC Summary

Malware Family: Unknown malware Total IOCs: 36 IOC Types: sha256_hash, url, domain, ip:port

TypeValueThreat TypeFirst SeenConfidence
domainjsonapi.bizbotnet_cc2026-04-2449%
domainjsonserv.bizbotnet_cc2026-04-2449%
domainjsonserv.xyzbotnet_cc2026-04-2449%
urlhxxps://audit.checkmarx.cx/v1/telemetrybotnet_cc2026-04-2449%
urlhxxps://api.github.com/search/commits?q=beautifulcastlebotnet_cc2026-04-2449%
domaincloudfront-021.s3.us-west-2.amazonaws.combotnet_cc2026-04-2449%
domaindomainaudit.checkmarx.cxbotnet_cc2026-04-2449%
domainaudit.checkmarx.cxbotnet_cc2026-04-2449%
urlhxxps://mymeetingtoday.com/download.phppayload_delivery2026-04-24100%
urlhxxps://mymeetingtoday.com/microsoft-store.htmlpayload_delivery2026-04-24100%
domainmymeetingtoday.compayload_delivery2026-04-24100%
urlhxxps://mymeetinggoogle.com/download.phppayload_delivery2026-04-24100%
urlhxxps://mymeetinggoogle.com/microsoft-store.htmlpayload_delivery2026-04-24100%
domainmymeetinggoogle.compayload_delivery2026-04-24100%
urlhxxps://livemeetgooogle.com/metro/download.phppayload_delivery2026-04-24100%
urlhxxps://livemeetgooogle.com/microsoft-store.htmlpayload_delivery2026-04-24100%
domainlivemeetgooogle.compayload_delivery2026-04-24100%
urlhxxps://my-googlemeeting.com/download.phppayload_delivery2026-04-24100%
urlhxxps://my-googlemeeting.com/microsoft-store.htmlpayload_delivery2026-04-24100%
domainmy-googlemeeting.compayload_delivery2026-04-24100%
urlhxxp://172[.]94[.]9[.]44/build2.exepayload_delivery2026-04-24100%
urlhxxp://172[.]94[.]9[.]44/build.exepayload_delivery2026-04-24100%
urlhxxp://172[.]94[.]9[.]44/1.txtpayload_delivery2026-04-24100%
urlhxxp://172[.]94[.]9[.]44/2.txtpayload_delivery2026-04-24100%
urlhxxps://www.document-share-id382929992933.sisregcel.compayload_delivery2026-04-24100%

KQL: Ip Hunt

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

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown malware
let malicious_domains = dynamic(["jsonapi.biz", "jsonserv.biz", "jsonserv.xyz", "cloudfront-021.s3.us-west-2.amazonaws.com", "domainaudit.checkmarx.cx", "audit.checkmarx.cx", "mymeetingtoday.com", "mymeetinggoogle.com", "livemeetgooogle.com", "my-googlemeeting.com", "document-share-id382929992933.sisregcel.com", "clang-outrag.digital"]);
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 - Unknown malware
let malicious_urls = dynamic(["https://audit.checkmarx.cx/v1/telemetry", "https://api.github.com/search/commits?q=beautifulcastle", "https://mymeetingtoday.com/download.php", "https://mymeetingtoday.com/microsoft-store.html", "https://mymeetinggoogle.com/download.php", "https://mymeetinggoogle.com/microsoft-store.html", "https://livemeetgooogle.com/metro/download.php", "https://livemeetgooogle.com/microsoft-store.html", "https://my-googlemeeting.com/download.php", "https://my-googlemeeting.com/microsoft-store.html", "http://172.94.9.44/build2.exe", "http://172.94.9.44/build.exe", "http://172.94.9.44/1.txt", "http://172.94.9.44/2.txt", "https://www.document-share-id382929992933.sisregcel.com", "https://clang-outrag.digital/script.sh", "https://dhnsdns.beer/api/index.php", "https://dhnsdns.beer/api/7z.exe", "http://206.82.6.110:8888/supershell/login/", "https://claude-desktop.gitlab.io/dev/"]);
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 - Unknown malware
let malicious_hashes = dynamic(["b25dedf5906840ddb19f96c27fae06abb08872b4b931466cc63ac1e9436b1270"]);
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
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/unknown/