AI Security AI安全 8h ago Updated 2h ago 更新于 2小时前 46

China-Nexus JadeProx Uses New TriBack Loader in Government and Healthcare Attacks 中国背景的JadeProx组织在政府和医疗攻击中使用新的TriBack加载器

JadeProx, a China-nexus threat actor, utilized an undocumented Windows loader named TriBack Loader to target government, healthcare, and education sectors in Asia and Latin America. The TriBack Loader employs DLL sideloading with legitimate signed executables, encrypted payloads, and rolling XOR keys to evade EDR detection via less-monitored Win32 API calls. Infection chains delivered Adaptix C2 or the Beagle backdoor, often distributed through spear-phishing campaigns impersonating Anthropic's Group-IB披露JadeProx组织利用新开发的TriBack Loader针对亚洲及拉美政府、医疗和教育机构发动攻击。 TriBack Loader采用DLL旁加载技术,结合合法签名可执行文件与恶意DLL,通过XOR加密和非常规API调用绕过EDR检测。 攻击者利用Nuclei扫描香港教育机构基础设施,并针对CVE-2018-11511等高危漏洞进行利用,同时使用伪装成Claude软件的钓鱼邮件分发Beagle后门。 暴露的阿里云服务器揭示了完整的攻击链,包括Webshell植入、后渗透工具部署及定制化加载器构建逻辑。

65
Hot 热度
70
Quality 质量
60
Impact 影响力

Analysis 深度分析

TL;DR

  • JadeProx, a China-nexus threat actor, utilized an undocumented Windows loader named TriBack Loader to target government, healthcare, and education sectors in Asia and Latin America.
  • The TriBack Loader employs DLL sideloading with legitimate signed executables, encrypted payloads, and rolling XOR keys to evade EDR detection via less-monitored Win32 API calls.
  • Infection chains delivered Adaptix C2 or the Beagle backdoor, often distributed through spear-phishing campaigns impersonating Anthropic's Claude software.
  • Post-exploitation activities included scanning for critical vulnerabilities (CVSS 9.8) in legacy systems like ASUSTOR ADM and Tenda routers, exploiting unpatched internet-facing Java applications.
  • Detection relies on identifying suspicious file layouts, such as signed binaries running from user-writable directories alongside encrypted .dat/.log files, rather than specific filenames.

Why It Matters

This incident highlights the evolving sophistication of supply-chain-adjacent attacks where threat actors leverage legitimate signed binaries to bypass security controls, making traditional signature-based detection ineffective. It underscores the critical risk of relying on outdated, high-severity vulnerabilities that have been known for years, demonstrating that advanced custom tooling is often secondary to basic hygiene failures like unpatched public-facing services. For AI and tech companies, the impersonation of popular tools like Claude serves as a warning about the increasing use of brand-jacking in phishing campaigns to distribute malware.

Technical Details

  • TriBack Loader Mechanics: Uses DLL sideloading where a malicious DLL is paired with a legitimate signed executable. It reverses payload bytes, decrypts them using a rolling XOR key, and executes shellcode via Win32 calls such as InitOnceExecuteOnce, TimerQueue callbacks, or the undocumented EtwpCreateEtwThread to avoid standard thread creation monitoring.
  • Payloads and C2: Variants delivered Adaptix C2 (open-source post-exploitation framework) or Beagle backdoor (distributed via DonutLoader). One variant impersonated Anthropic’s Claude, using a fake MSI installer from claude-pro[.]com for persistence in the Windows Startup folder.
  • Targeted Vulnerabilities: Operators scanned 14,653 URLs in Hong Kong’s education sector, exploiting four CVEs with CVSS 9.8 scores: CVE-2018-11511 (ASUSTOR ADM), CVE-2021-24139 (10Web Photo Gallery), CVE-2021-31755 (Tenda AC11 routers), and CVE-2021-32305 (WebSVN).
  • Infrastructure and Indicators: Staging server at 43.106.71.28 (port 8000). Malicious domains include claude-pro[.]com, license[.]claude-pro[.]com, and security vendor lookalikes (update-trellix[.]com, etc.). File artifacts include nested _CL_###### folders, ~del.vbs.bat, and unexpected copies of hostfxr.dll, avk.dll, or MpClient.dll.

Industry Insight

  • Prioritize Legacy Patching: Despite the focus on novel loaders, the initial access vectors were well-known, high-severity vulnerabilities from 2018 and 2021. Organizations must enforce strict patch management for internet-facing assets, particularly legacy infrastructure and routers, as these remain primary entry points for advanced threats.
  • Enhance Endpoint Visibility for Sideloading: Security teams should configure EDR solutions to flag anomalies in DLL sideloading scenarios, specifically monitoring for legitimate binaries executing from non-standard locations (e.g., Temp, Startup) accompanied by encrypted data files.
  • Brand Impersonation Vigilance: With attackers increasingly mimicking popular AI brands like Claude, IT security awareness programs should educate users on verifying software sources and recognizing domain spoofing, while security operations centers should monitor for associated IOCs linked to these impersonation campaigns.

TL;DR

  • Group-IB披露JadeProx组织利用新开发的TriBack Loader针对亚洲及拉美政府、医疗和教育机构发动攻击。
  • TriBack Loader采用DLL旁加载技术,结合合法签名可执行文件与恶意DLL,通过XOR加密和非常规API调用绕过EDR检测。
  • 攻击者利用Nuclei扫描香港教育机构基础设施,并针对CVE-2018-11511等高危漏洞进行利用,同时使用伪装成Claude软件的钓鱼邮件分发Beagle后门。
  • 暴露的阿里云服务器揭示了完整的攻击链,包括Webshell植入、后渗透工具部署及定制化加载器构建逻辑。

为什么值得看

本文揭示了高级持续性威胁(APT)组织在恶意软件工程上的最新进展,特别是如何通过定制化的Windows加载器规避主流端点检测与响应(EDR)系统。对于安全从业者而言,理解DLL旁加载和非常规线程创建技术的检测方法是提升防御能力的关键。

技术解析

  • TriBack Loader架构:该加载器基于DLL旁加载技术,将恶意DLL与合法的签名可执行文件捆绑。它通过反转载荷字节并使用滚动密钥进行XOR解密,最终通过Win32 API执行shellcode,这些API通常比CreateThread更少受到EDR监控。
  • 变体与持久化机制:存在四种主要变体,分别使用InitOnceExecuteOnce、TimerQueue回调或 undocumented 的EtwpCreateEtwThread函数来执行载荷。其中两个变体交付Adaptix C2框架,一个变体使用DonutLoader运行Beagle后门,并通过修改Windows启动文件夹实现持久化。
  • 社会工程学与技术结合:攻击者注册了claude-pro[.]com等域名,伪装成Anthropic的Claude软件,通过MSI安装器诱骗用户绕过UAC提示。同时,利用Nuclei工具对大量教育网站URL进行扫描,仅关注严重性评分为9.8的高危漏洞(如ASUSTOR ADM、Tenda路由器等)。
  • 基础设施与检测线索:攻击基础设施包括阿里云新加坡节点(43.106.71.28:8000)及多个模仿安全厂商更新域名的IP。检测重点应放在用户可写目录中运行的签名二进制文件、异常的加密.dat/.log文件以及特定的DLL副本(如hostfxr.dll, avk.dll)。

行业启示

  • 云基础设施安全至关重要:攻击者利用暴露的云服务器作为跳板和资源库,表明云环境配置错误(如未授权访问、弱口令)可能直接导致大规模攻击能力的泄露。
  • 传统漏洞仍是突破口:尽管使用了复杂的自定义加载器,但初始入侵仍依赖于2018年和2021年披露的高危漏洞,强调及时修补已知漏洞和最小化互联网暴露面仍是基础且有效的防御手段。
  • 供应链与品牌仿冒风险加剧:攻击者利用知名AI品牌(如Claude)进行钓鱼和恶意软件分发,反映了威胁行为者正积极利用新兴技术热点进行社会工程学攻击,需加强对相关品牌域名的监控和用户安全意识培训。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Security 安全