Atomic Stealer Malware: New ClickFix Attacks Target macOS Users

Article Content
The landscape of macOS security has shifted dramatically as we move through 2026. For years, the prevailing narrative was that Mac users were shielded by a “walled garden” and robust system-level protections like Gatekeeper and XProtect. However, a high-priority security report released on April 22, 2026, by SecureMac and Jamf Threat Labs serves as a stark reminder that as software defenses harden, attackers are simply pivoting to the most vulnerable component of any system: the human user. The latest evolution of the Atomic Stealer malware (also known as AMOS) has effectively bypassed Apple’s newest terminal-level safeguards by weaponizing a native, trusted application—the macOS Script Editor.
The Evolution of Atomic Stealer Malware in 2026
The Atomic Stealer malware has remained a dominant force in the macOS threat landscape since its emergence as a “Malware-as-a-Service” (MaaS) offering. Originally written in Go and later refined into C++, AMOS has consistently adapted to Apple’s security updates. In early 2026, threat researchers noted a massive surge in its distribution, with Jamf reporting that AMOS accounted for over 75% of all trojan activity on macOS. Its primary objective remains unchanged: the rapid exfiltration of high-value data, including browser credentials, session cookies, and cryptocurrency wallets.
What makes the April 2026 variant particularly dangerous is its integration with the “ClickFix” social engineering framework. Historically, ClickFix campaigns relied on tricking users into copying a malicious command and pasting it into the Terminal. This was effective because many Mac power users are accustomed to using Terminal for troubleshooting. However, with the release of macOS 26.4 (codenamed Tahoe), Apple introduced a critical “friction point”: a system warning that triggers when a user attempts to paste a multi-line command into Terminal, specifically scanning for patterns associated with curl-based payload delivery. In response, the developers behind the Atomic Stealer malware have abandoned the Terminal entirely in favor of a more “helpful” vector: the Script Editor.
Deconstructing the ClickFix “Script Editor” Vector
The core of this new attack lies in the exploitation of the applescript:// URL scheme. This is a legitimate macOS feature designed to allow developers to trigger the Script Editor application directly from a web browser or another app. By leveraging this scheme, attackers have created a streamlined infection chain that feels more “Apple-like” and less suspicious than the raw command-line interface of the Terminal. The attack typically follows this sequence:
- The Social Engineering Lure: The user lands on a sophisticated, fake Apple-themed support page or a “Zoom update” prompt. These pages often claim the system has run out of disk space or requires a critical security patch to continue browsing.
- The Browser Hand-off: Instead of asking the user to copy text, the site presents a button labeled “Fix Now” or “Install Update.” Clicking this button invokes the
applescript://URL, which triggers a browser prompt: “Allow this site to open Script Editor?” - The Trusted Execution: Because the Script Editor is a signed, native Apple application, users are significantly more likely to click “Allow.” Once the app opens, it is pre-populated with an obfuscated AppleScript.
- The One-Click Infection: The user is then instructed to click the “Run” button within the Script Editor to “complete the update.” There is no manual typing or pasting involved, reducing the user’s cognitive load and suspicion.
By shifting the execution environment to the Script Editor, the Atomic Stealer malware avoids the Terminal-specific warnings introduced in macOS 26.4. The Script Editor is viewed as a “trusted” utility, and because the user is the one clicking “Run,” the operating system assumes the action is intentional.
Technical Deep-Dive: From AppleScript to Binary Payload
The technical sophistication of the Atomic Stealer malware lies in its multi-staged delivery. The initial AppleScript pre-filled in the editor is intentionally lightweight and obfuscated to evade static analysis. Typically, the script uses a do shell script command to execute a series of background tasks without the user seeing a secondary window. The execution chain generally unfolds as follows:
- Environment Check: The script often performs a quick reconnaissance of the system, checking for the presence of virtual machine indicators or security researcher tools.
- Second-Stage Fetch: The script executes a
curlcommand to download a second-stage shell script from an attacker-controlled server (often using a disguised domain likedryvecar[.]comorapple-support-fix[.]net). - Payload Decoding: This second-stage script decodes a Base64-encoded Mach-O binary. This binary is the actual Atomic Stealer malware.
- Bypassing Gatekeeper: To ensure the binary runs without a “malicious software” warning, the script uses the
xattr -d com.apple.quarantinecommand to strip the quarantine flag from the downloaded file. It then modifies the file permissions usingchmod +x. - In-Memory Execution: The binary is often written to a temporary directory (
/tmp) and executed immediately. In some advanced 2026 variants, researchers have observed the malware attempting to run directly in system memory to avoid leaving a footprint on the physical disk.
What the Atomic Stealer Malware Targets in 2026
The 2026 variant of AMOS is a surgical instrument for digital theft. Once executed, the Atomic Stealer malware performs a comprehensive sweep of the user’s local environment. The speed at which it operates is remarkable; a full exfiltration of a standard user profile can take less than 60 seconds. The malware targets three primary silos of information:
1. Cryptocurrency Wallets and Extensions
As decentralized finance remains a primary target for cybercriminals, AMOS has expanded its hardcoded list of targeted crypto extensions. It specifically hunts for data from MetaMask, Phantom, Binance, Coinbase Wallet, and Exodus. The malware does not just steal the public addresses; it targets the local storage files that contain encrypted private keys and seed phrases, which are then cracked offline or used in credential stuffing attacks.
2. Browser Data and Session Cookies
A major focus of the Atomic Stealer malware is the harvesting of session cookies from Google Chrome, Brave, and Firefox. By stealing these cookies, attackers can bypass Multi-Factor Authentication (MFA) by “hijacking” an active session, allowing them to log into sensitive accounts (like Gmail or banking portals) as if they were the legitimate user on a trusted device.
3. Keychain and System Metadata
The malware uses AppleScript-based spoofing to present a fake system login prompt. This prompt looks identical to the standard macOS authentication dialog. If the user enters their system password, AMOS gains the ability to unlock the macOS Keychain, granting the attackers access to every password and certificate stored by the user over the life of the machine.
The Shift to “Human-in-the-Loop” Deception
The April 2026 report emphasizes a critical trend: the “death of the exploit” in favor of “human-in-the-loop” deception. Because modern operating systems like macOS are increasingly resistant to zero-day exploits, attackers have realized that it is far easier to convince a human to click a button than it is to find a flaw in the kernel. The “ClickFix” methodology treats the user as an involuntary collaborator. By presenting a polished, professional-looking UI that mimics Apple’s own design language, the Atomic Stealer malware leverages the user’s inherent trust in the platform.
Furthermore, the use of the Script Editor is a tactical masterstroke. While the Terminal is often associated with “scary” technical tasks, the Script Editor feels like a productive tool. The prompt to “Allow Script Editor to open” doesn’t carry the same red-flag status as a warning about “Executing an unsigned script from the internet.”
Defense and Mitigation Strategies
Standard antivirus solutions often struggle with the Atomic Stealer malware because the initial stages of the attack use legitimate system tools (Browser, Script Editor, curl). To defend against these evolved threats, security experts recommend a multi-layered approach:
- Verify the Source: Never execute scripts or open system utilities based on a web prompt. Apple will never ask you to use Script Editor or Terminal to “clean up your Mac” or “update Zoom” via a website button.
- Monitor for URL Schemes: Enterprise administrators should consider using Mobile Device Management (MDM) profiles to restrict or monitor the use of the
applescript://andterminal://URL schemes, especially from untrusted browser sources. - Use Hardware Security Keys: Since AMOS specializes in stealing session cookies to bypass MFA, using hardware-based keys (like YubiKey) can provide a final line of defense, as these physical tokens cannot be exfiltrated via software.
- Audit the /tmp Directory: High-end detection and response (EDR) tools should be configured to flag any Mach-O binaries that are executed from the
/tmpor/private/tmpdirectories, as these are the primary staging grounds for the Atomic Stealer malware.
Conclusion: The Future of macOS Threats
The April 2026 “ClickFix” campaign is a landmark in the evolution of macOS malware. By identifying and exploiting the applescript:// URL scheme, the creators of the Atomic Stealer malware have demonstrated that they are just as agile as the engineers at Apple. As long as users are willing to follow instructions from a “helpful” web prompt, the threat of information stealers will persist. The “Ninja” takeaway for 2026 is simple: the most secure system in the world is only as strong as the person holding the mouse. Vigilance, skepticism of “quick fixes,” and a deep understanding of these technical delivery vectors are the only ways to remain safe in an era where the Script Editor has become a weapon.
Written by
TempMail Ninja
Digital privacy and online security expert. Passionate about creating tools that protect users' identity on the internet.


