← Back to SOC feed Coverage →

ThreatFox: SmartApeSG IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsDnsEventsUrlClickEvents
iocjs-smartapesgthreatfox
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-05-05T23:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: SmartApeSG IOCs rule detects potential adversary activity linked to the SmartApeSG threat group, which is associated with malware distribution and command-and-control infrastructure. SOC teams should proactively hunt for these IOCs in Azure Sentinel to identify and mitigate early-stage compromises before lateral movement and data exfiltration occur.

IOC Summary

Malware Family: SmartApeSG Total IOCs: 8 IOC Types: sha256_hash, ip:port, domain, url

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://silentmatrix.top/proxy/logout-client.phppayload_delivery2026-05-05100%
domainsilentmatrix.toppayload_delivery2026-05-05100%
urlhxxps://silentmatrix.top/proxy/acl-pipeline.jspayload_delivery2026-05-05100%
sha256_hash16cfe58eab4573ff575c563839e65474da5569247d55fbb59fd56f2684cec610payload2026-05-0575%
sha256_hash8e1ed8998519001d4f4af8e1fe9381950cf9c2501ca1b25c414712d29966aee6payload2026-05-0575%
sha256_hash97f3bdf6db1c274da0e5e653ef59f49514f6d7ed531138f487912d1f9a8fac1cpayload2026-05-0575%
ip:port144[.]208[.]127[.]215:443payload_delivery2026-05-0575%
ip:port144[.]208[.]127[.]163:443payload_delivery2026-05-0575%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - SmartApeSG
let malicious_ips = dynamic(["144.208.127.163", "144.208.127.215"]);
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(["144.208.127.163", "144.208.127.215"]);
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 - SmartApeSG
let malicious_domains = dynamic(["silentmatrix.top"]);
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 - SmartApeSG
let malicious_urls = dynamic(["https://silentmatrix.top/proxy/logout-client.php", "https://silentmatrix.top/proxy/acl-pipeline.js"]);
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 - SmartApeSG
let malicious_hashes = dynamic(["16cfe58eab4573ff575c563839e65474da5569247d55fbb59fd56f2684cec610", "8e1ed8998519001d4f4af8e1fe9381950cf9c2501ca1b25c414712d29966aee6", "97f3bdf6db1c274da0e5e653ef59f49514f6d7ed531138f487912d1f9a8fac1c"]);
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/js.smartapesg/