AI Security AI安全 3h ago Updated 1h ago 更新于 1小时前 40

WordlistLoader Delivers Amatera via ClickFix, SynkLoader Phishes Windows Passwords WordlistLoader通过ClickFix投递Amatera,SynkLoader窃取Windows密码

WordlistLoader is a new malware loader delivering Amatera Stealer via ClearFake ClickFix campaigns, encoding shellcode as sequences of plain English words (one word per byte) or UUID-encoded chunks SynkLoader is distributed through Microsoft Teams phishing impersonating IT Service Desk, using fake MSI installers from Azure storage to steal Windows credentials via a fake lock screen Threat actors increasingly abuse legitimate infrastructure (jsDelivr CDN, Azure file storage, blockchain smart cont 新型恶意软件家族WordlistLoader通过ClearFake活动的ClickFix(假验证码)技术投递Amatera窃取器,利用Base64编码恶意JavaScript和区块链智能合约(EtherHiding)实现动态载荷加载。 WordlistLoader采用独特的单词列表编码方式存储shellcode(每个单词代表一个字节),并通过硬件断点技术绕过Windows事件追踪(ETW)以规避检测。 恶意软件利用合法CDN(jsDelivr)托管恶意PowerShell脚本,结合WebDAV共享和隐藏控制台执行技术,实现无文件攻击和持久化。 另一恶意软件SynkLoader通过Microso

58
Hot 热度
62
Quality 质量
52
Impact 影响力

Analysis 深度分析

TL;DR

  • WordlistLoader is a new malware loader delivering Amatera Stealer via ClearFake ClickFix campaigns, encoding shellcode as sequences of plain English words (one word per byte) or UUID-encoded chunks
  • SynkLoader is distributed through Microsoft Teams phishing impersonating IT Service Desk, using fake MSI installers from Azure storage to steal Windows credentials via a fake lock screen
  • Threat actors increasingly abuse legitimate infrastructure (jsDelivr CDN, Azure file storage, blockchain smart contracts via EtherHiding) to stage and rotate malicious payloads
  • Amatera Stealer has evolved with hardened syscall invocation through WoW64 transition, Heaven's Gate indirect-syscall trampolines, and a redesigned application-bound encryption bypass inspired by Remus Stealer
  • WordlistLoader bypasses Event Tracing for Windows (ETW) using hardware breakpoints and reconstructs shellcode in memory to minimize on-disk artifacts and complicate detection

Why It Matters

This article highlights the rapid evolution of malware delivery chains that combine social engineering (ClickFix, phishing) with sophisticated evasion techniques, making detection increasingly difficult for security teams. The shift from Python-based loaders to custom-built WordlistLoader demonstrates how threat actors are professionalizing their tooling, while the abuse of legitimate cloud infrastructure (Azure, CDN, blockchain) blurs the line between benign and malicious activity. For AI and cybersecurity practitioners, understanding these techniques is critical for improving detection models and defensive strategies against next-generation malware campaigns.

Technical Details

  • WordlistLoader infection chain: ClickFix prompts on compromised websites inject Base64-encoded JavaScript that fetches additional code from blockchain smart contracts (EtherHiding). The command uses conhost to launch a hidden cmd.exe, maps a remote WebDAV share via pushd, and executes the loader through rundll32.exe
  • Shellcode encoding: WordlistLoader stores shellcode as plain English words (each representing one byte) or 16-byte UUID-encoded chunks, then reconstructs the shellcode in memory using a reflective loader to unpack and execute Amatera
  • Amatera Stealer capabilities: Latest version features updated static obfuscation, hardened syscall invocation through WoW64 transition, dynamically generated x64 indirect-syscall trampolines via Heaven's Gate, and a redesigned application-bound encryption (ABE) bypass inspired by Remus Stealer
  • ETW bypass: WordlistLoader employs a hardware-breakpoint-based method to bypass Event Tracing for Windows, preventing traces of malicious activity from being logged
  • SynkLoader delivery: Phishing emails impersonate IT Service Desk using Microsoft 365 default domains, directing victims to download MSI installers from Azure file storage endpoints that appear legitimate, which then serve a fake Windows lock screen to harvest credentials

Industry Insight

  • Security teams should prioritize monitoring for ClickFix-style social engineering attacks and implement user awareness programs specifically targeting the "fake CAPTCHA" technique, as this remains a highly effective initial access vector
  • The increasing reliance on legitimate cloud infrastructure (Azure, CDN, blockchain) for payload hosting means traditional perimeter-based detection is insufficient; organizations need cloud-native detection capabilities and behavioral monitoring to identify abuse of trusted services
  • The evolution of Amatera Stealer with Heaven's Gate techniques and ABE bypasses suggests ransomware groups are investing heavily in evasion research; defenders should update detection signatures and consider memory-focused analysis tools rather than relying solely on disk-based scanning

TL;DR

  • 新型恶意软件家族WordlistLoader通过ClearFake活动的ClickFix(假验证码)技术投递Amatera窃取器,利用Base64编码恶意JavaScript和区块链智能合约(EtherHiding)实现动态载荷加载。
  • WordlistLoader采用独特的单词列表编码方式存储shellcode(每个单词代表一个字节),并通过硬件断点技术绕过Windows事件追踪(ETW)以规避检测。
  • 恶意软件利用合法CDN(jsDelivr)托管恶意PowerShell脚本,结合WebDAV共享和隐藏控制台执行技术,实现无文件攻击和持久化。
  • 另一恶意软件SynkLoader通过Microsoft Teams钓鱼活动分发,伪装成IT服务台人员诱导用户从Azure存储下载MSI安装程序,窃取Windows凭据。
  • Amatera窃取器最新版本采用硬化的syscall调用(通过WoW64转换和Heaven's Gate)、动态x64间接syscall trampolines以及重新设计的ABE绕过技术。

为什么值得看

本文揭示了恶意软件分发技术的最新演进趋势,特别是将区块链智能合约、合法CDN服务和云存储平台(Azure)结合用于恶意载荷托管,展示了攻击者如何利用信任基础设施规避检测。对于安全从业者而言,理解这些高级持久化威胁(APT)技术有助于完善检测策略和防御架构。

技术解析

  • ClickFix与EtherHiding结合攻击链:攻击者入侵真实网站,注入Base64编码的恶意JavaScript,该脚本从区块链智能合约获取并动态执行另一段JavaScript,实现载荷的动态加载和URL轮换,规避传统黑名单检测。
  • WordlistLoader编码与ETW绕过:该加载器将shellcode编码为英文单词序列(每个单词代表一个字节)或16字节UUID编码块,通过硬件断点技术绕过Windows事件追踪(ETW),减少磁盘痕迹并干扰静态分析。
  • 无文件执行与WebDAV利用:恶意命令通过conhost启动隐藏cmd.exe进程,使用pushd映射远程WebDAV共享,再通过rundll32.exe加载DLL,实现从远程HTTPS共享执行恶意代码,与微软近期发现的攻击模式重叠。
  • SynkLoader钓鱼与凭据窃取:攻击者伪装成Microsoft 365默认域(@company.onmicrosoft.com)的IT服务台人员,通过Teams消息诱导用户从Azure文件存储下载MSI安装程序,该程序伪装为PowerShell清理工具,实际展示伪造锁屏界面窃取系统登录凭据。
  • Amatera高级持久化技术:最新版本采用静态混淆、硬化的syscall调用(通过WoW64转换和Heaven's Gate动态生成x64间接syscall trampolines)、以及受Remus Stealer启发的应用程序绑定加密(ABE)绕过机制,增强对抗安全软件的能力。

行业启示

  • 信任基础设施滥用成为新趋势:攻击者日益倾向于利用区块链、CDN和云存储等合法服务托管恶意载荷,安全防御需从传统恶意域名/IP检测转向行为分析和异常流量检测。
  • 无文件攻击与ETW绕过技术普及化:硬件断点绕过ETW、WebDAV远程执行等技术正从高级APT组织向商业恶意软件扩散,企业需加强端点检测与响应(EDR)能力,关注进程行为而非仅依赖文件特征。
  • 供应链与云环境安全需强化:攻击者通过入侵网站注入恶意代码、滥用Azure存储分发恶意MSI,表明云服务和第三方组件的安全审查至关重要,建议实施严格的代码签名验证和云访问安全代理(CASB)策略。

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

Security 安全