I cracked open the sample at 2 AM. The binary was small—under 2 MB. It had a valid Apple Developer ID signature. The code doesn't lie, but the people running it do.
The hook is this: on July 29, 2025, SlowMist published a threat advisory about a new malware campaign targeting Web3 professionals. Attackers pose as recruiters, send a link to an AI-powered interview tool called "Relay," and the victim downloads a cross-platform infostealer. I’ve spent the last 48 hours reverse-engineering the sample SlowMist shared. The results are worse than the press release suggests.
Context: The Trust Assumption in Remote Hiring
Web3 is a remote-first industry. Hiring managers use Telegram, LinkedIn, and Discord to vet candidates. The trust assumption is high: you verify a recruiter’s profile, you click a link, you run an installer. That chain is now broken. The malicious tool targets both macOS (Apple Silicon and Intel) and Windows. It exfiltrates browser credentials, cryptocurrency wallet data (including private keys from Phantom, MetaMask, and Ledger Live), macOS Keychain secrets, and Telegram session tokens.
Based on my audit experience, most infostealers are shotgun blasts—they hit anyone. This one is a sniper rifle. The code checks for specific wallet extensions before deploying its full payload. It avoids infecting machines that don’t have Web3-related software. That’s not random. That’s targeting.

Core: Code-Level Analysis of the Malware
I ran the macOS variant inside a sandboxed macOS 14.4 virtual machine. The sample, named "Relay.app.zip," unpacks a signed .app bundle. The binary uses NSAppleScript to execute shell commands without user prompt—a known technique, but bypassing Gatekeeper on recent macOS versions requires either a stolen or forged Developer ID certificate. The attackers had one.

The malware establishes persistence via a LaunchAgent plist in ~/Library/LaunchAgents/. It phones home to a command-and-control (C2) server encoded in the binary’s __const section. The C2 endpoint uses HTTPS with a self-signed certificate, likely to avoid detection by enterprise proxies that inspect SSL traffic. I extracted the IP: 185.234.72.14, currently hosted on a bulletproof provider in the Netherlands.
Data exfiltration happens in two phases. First, it scrapes local files for any path containing "wallet" or "seed." Second, it dumps Chrome and Firefox profile directories in bulk, compresses them into a .tar.gz, and uploads via a POST request. The Windows variant uses the same logic but leverages PowerShell for credential stealing from the Windows Credential Manager.
Efficiency is not about speed—it’s about reducing attack surface. The attackers optimized for stealth: the binary sleeps for 30 seconds before any malicious activity, evading sandboxes that timeout quickly. It also deletes itself from disk after exfiltration, leaving only the LaunchAgent (which can re-download).
Contrarian: The Blind Spot Nobody Talks About
Everyone will tell you to run antivirus or use a hardware wallet. Those are necessary but insufficient. The real blind spot is the authentication model for professional identity. LinkedIn and Telegram are not designed for high-stakes verification. A recruiter’s profile with 500+ connections and a verified email can still be compromised or fake.
The contrarian angle: security awareness training won’t stop this. It’s not about users being careless. It’s about the absence of cryptographic identity in the hiring pipeline. Web3 companies spend millions on smart contract audits—yet they trust a LinkedIn profile for employee onboarding. The attack surface is not the code; it’s the process.
SlowMist’s disclosure is excellent, but the industry needs more than IOCs. We need zero-trust interview environments: dedicated virtual machines, ephemeral wallets, and decentralized identity verification (e.g., ENS domains with on-chain attestation from previous employers). Until that happens, every interview invitation is a potential exploit.
Takeaway: What Comes Next
The malware sample is already forked. The source code for the infostealer module is public on GitHub—part of a leak from a different campaign. Variants will emerge targeting different job portals (Indeed, Upwork). The attacker group likely maintains infrastructure for multiple personas. SlowMist will update their IOC list, but the core vulnerability is human trust in a digital-only medium.

I forecast a 60% increase in similar attacks over the next six months. The market will react by driving demand for isolated browsing environments and on-chain proof-of-hire mechanisms. The code doesn’t lie—but the people running it do. The only fix is to change the game entirely.