MPC-lab

Market Prices

Coin Price 24h
BTC Bitcoin
$64,891.7 +1.32%
ETH Ethereum
$1,923.02 +1.39%
SOL Solana
$74.73 +1.98%
BNB BNB Chain
$592.7 +4.20%
XRP XRP Ledger
$1.09 +1.86%
DOGE Dogecoin
$0.0705 +0.27%
ADA Cardano
$0.1716 +4.76%
AVAX Avalanche
$6.49 +1.47%
DOT Polkadot
$0.7706 +0.77%
LINK Chainlink
$8.49 +2.55%

Fear & Greed

28

Fear

Market Sentiment

Event Calendar

{{年份}}
18
03
unlock Sui Token Unlock

Team and early investor shares released

12
05
halving BCH Halving

Block reward halving event

28
03
unlock Arbitrum Token Unlock

92 million ARB released

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

Altseason Index

43

Bitcoin Season

BTC Dominance Altseason

Gas Tracker

Ethereum 28 Gwei
BNB Chain 3 Gwei
Polygon 42 Gwei
Arbitrum 0.5 Gwei
Optimism 0.3 Gwei

Market Cap

All →
1
Bitcoin
BTC
$64,891.7
1
Ethereum
ETH
$1,923.02
1
Solana
SOL
$74.73
1
BNB Chain
BNB
$592.7
1
XRP Ledger
XRP
$1.09
1
Dogecoin
DOGE
$0.0705
1
Cardano
ADA
$0.1716
1
Avalanche
AVAX
$6.49
1
Polkadot
DOT
$0.7706
1
Chainlink
LINK
$8.49

🐋 Whale Tracker

🔴
0x9082...231a
1h ago
Out
2,574,630 USDT
🔵
0x88cc...cbf0
12m ago
Stake
5,065,447 USDT
🟢
0xd17a...9e73
1h ago
In
1,963,249 USDC

💡 Smart Money

0x5fe1...19d6
Early Investor
+$0.8M
70%
0xdf63...8e66
Early Investor
+$2.2M
85%
0xb0bb...8d80
Top DeFi Miner
-$0.9M
73%

🧮 Tools

All →
Regulation

The Fake Interview That Downloads a Keylogger: A Technical Autopsy of the Web3 Hiring Malware

CryptoCred

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.

The Fake Interview That Downloads a Keylogger: A Technical Autopsy of the Web3 Hiring Malware

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 Fake Interview That Downloads a Keylogger: A Technical Autopsy of the Web3 Hiring Malware

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.

The Fake Interview That Downloads a Keylogger: A Technical Autopsy of the Web3 Hiring Malware

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.

This analysis is based on my independent reverse-engineering of the sample published by SlowMist. Always verify with multiple sources. No financial advice.