Obsidian 插件被滥用于部署远程访问木马
TL;DR · AI 摘要
安全团队发现针对金融与加密用户的定向攻击,利用 Obsidian 插件传播新型 PHANTOMPULSE RAT,其通过以太坊区块链动态获取 C2 地址。
核心要点
- PHANTOMPULSE RAT 利用以太坊区块链嵌入 C2 地址,实现抗封锁的远程控制机制
- 攻击者通过 LinkedIn 和 Telegram 社交工程诱导用户启用恶意插件(如 Shell Commands)
- Windows/macOS 双平台感染路径不同:Windows 使用 PowerShell 加载器,macOS 使用 AppleScript
结构提纲
按章节快速跳转。
思维导图
用一张图看清主题之间的关系。
查看大纲文本(无障碍 / 无 JS 友好)
- Obsidian 插件滥用事件
- 攻击目标
- 金融从业者
- 加密货币相关人士
- 攻击手段
- LinkedIn/Telegram 社交工程
- 共享 Vault 引导插件启用
- 技术特征
- PHANTOMPULSE RAT
- 基于 Ethereum 的 C2 机制
- 内存加载规避检测
金句 / Highlights
值得收藏与分享的关键句。
PHANTOMPULSE 使用以太坊区块链动态解析 C2 地址,显著提升抗打击能力。
Executive Summary
Security researchers have identified a highly targeted social engineering campaign (REF6598) that weaponizes the [Obsidian](https://obsidian.md/) note-taking application to deliver a previously undocumented Remote Access Trojan (RAT) named PHANTOMPULSE. The campaign targets individuals in the financial and cryptocurrency sectors on both Windows and macOS. Attackers use platforms like LinkedIn and Telegram to build trust before luring victims into a malicious shared Obsidian vault. The attack chain relies on tricking the user into enabling a community plugin, which then executes code to deploy the RAT. PHANTOMPULSE demonstrates advanced capabilities, including using the Ethereum blockchain to dynamically resolve its command-and-control (C2) server address, making it highly resilient to takedowns.
- * *
Threat Overview
The attack, designated REF6598, is a multi-stage social engineering effort. Threat actors pose as venture capitalists and engage with targets on professional networking sites before moving the conversation to a private Telegram group. The primary lure is an invitation to collaborate via a shared, cloud-hosted [Obsidian](https://obsidian.md/) vault.
Once the victim opens the shared vault, the infection is triggered by social engineering. The victim is prompted to enable the "Installed community plugins" synchronization feature. This seemingly innocuous action, which requires manual user approval, is the key to the compromise. It enables malicious versions of legitimate [Obsidian](https://obsidian.md/) plugins ('Shell Commands' and 'Hider') that are present in the shared vault.
Technical Analysis
The attack chain differs slightly between Windows and macOS but follows the same general principle:
- Initial Access ([`T1566.002`](https://attack.mitre.org/techniques/T1566/002/)): The attacker uses social engineering on LinkedIn/Telegram to convince the target to open a malicious shared [Obsidian](https://obsidian.md/) vault.
- Execution ([`T1204.002`](https://attack.mitre.org/techniques/T1204/002/)): The user is manipulated into enabling community plugins within Obsidian. This action executes a malicious script via the compromised 'Shell Commands' plugin.
- Staging: On Windows, a PowerShell script is executed. This script drops a loader known as PHANTOMPULL. On macOS, a similar process occurs using AppleScript.
- Payload Delivery: The PHANTOMPULL loader decrypts and launches the final payload, the PHANTOMPULSE RAT, directly into memory to evade file-based detection (`T1055`).
- Command and Control ([`T1102.002`](https://attack.mitre.org/techniques/T1102/002/)):PHANTOMPULSE uses a novel C2 mechanism. It queries the Ethereum blockchain for the latest transaction from a hard-coded wallet address. The C2 server's IP address is embedded within this transaction data, providing a decentralized and censorship-resistant way for the malware to receive instructions.
Once active, PHANTOMPULSE can capture keystrokes, take screenshots, exfiltrate files, and execute arbitrary commands.
Impact Assessment
A successful compromise gives the attacker full access to the victim's machine. For professionals in finance and crypto, this could lead to the theft of sensitive corporate data, intellectual property, trading strategies, and, most critically, cryptocurrency wallet keys and exchange credentials. The cross-platform nature of the attack broadens its potential victim pool. The use of a blockchain-based C2 demonstrates a high level of sophistication, making the threat infrastructure difficult to disrupt.
Cyber Observables for Detection
Type
process_name
Value
Obsidian.exe
Description
Monitor for Obsidian spawning child processes like powershell.exe, cmd.exe, or osascript.
Type
command_line_pattern
Value
powershell -ExecutionPolicy Bypass
Description
Suspicious PowerShell execution, especially when initiated by a non-standard application like Obsidian.
Type
network_traffic_pattern
Value
Outbound connections to Ethereum blockchain nodes or gateways from unexpected processes.
Description
Could indicate PHANTOMPULSE attempting to resolve its C2 address.
Type
file_path
Value
[Vault]/.obsidian/plugins/
Description
Monitor for the creation or modification of files within the Obsidian plugins directory, especially outside of the official plugin marketplace.
Detection & Response
- Process Monitoring (D3-PA: Process Analysis): Implement EDR rules to detect and alert when the [Obsidian](https://obsidian.md/) process spawns command-line interpreters (
powershell.exe,cmd.exe,bash,osascript). This is highly anomalous behavior. - User Training: Educate users, especially those in high-risk industries, about the dangers of social engineering and the specific tactic of abusing collaboration tool features like shared vaults and plugins.
- Application Control (D3-EAL: Executable Allowlisting): Where possible, use application control policies to restrict the installation and execution of unapproved community plugins in applications like Obsidian.
- Network Monitoring (D3-NTA: Network Traffic Analysis): Monitor for unusual DNS queries or direct IP connections related to blockchain services from endpoints where such activity is not expected.
Mitigation
- Vet Community Plugins: Be extremely cautious when enabling third-party or community-developed plugins in any application. Only install plugins from the official, trusted marketplace and review their permissions.
- Disable Auto-Sync for Untrusted Vaults: Do not enable plugin synchronization when connecting to an [Obsidian](https://obsidian.md/) vault from an unknown or untrusted source.
- Principle of Least Privilege: Run applications like [Obsidian](https://obsidian.md/) as a standard user, not with administrative privileges, to limit the potential impact of a compromise.
- Endpoint Security: Ensure up-to-date EDR and antivirus solutions are deployed to detect and block suspicious script execution and process injection techniques.