Skip to main content
Cyber News & CTI Reports :: 2026-08-10 | Solidity Pro VS Code Extensions Steal Crypto Wallets, API Keys, and Credentials
Contact Page | Privacy Policy

2026-08-10 | Solidity Pro VS Code Extensions Steal Crypto Wallets, API Keys, and Credentials

1. AI Summary

Cybersecurity researchers discovered a malicious VS Code extension named Solidity Pro that steals browser credentials, crypto wallets, and other sensitive data via a Telegram bot. The extension uses heavy obfuscation, delayed activation, and supply‑chain tactics to evade detection, echoing the playbook of the WhiteCobra threat group. Recent investigations also uncovered related rogue extensions, npm packages, and techniques targeting developers worldwide.

2. IOCs

IOC Type Value Description Relevant MITRE ATT&CK Techniques
Filename
DigitalBarberTrim.html-entity-codec
VS Code extension dropping remote VSIX T1195.002|T1567.002
Filename
helper-beeps.solidity-pro
Another malicious VS Code extension variant T1195.002|T1204.001
Filename
web3devtoolsx.solidity-pro
Malicious VS Code extension with info stealer T1195.002|T1204.001
Filename
solidity-pro
Malicious VS Code extension delivering credential stealer T1195.002|T1204.001
Filename
ascii-fetcher
NPM package embedding malicious payload T1059.001|T1071
Filename
@jaymara/jsononifier
Malicious dependency used to decode and execute commands T1059.001
Filename
calc.exe
Demo payload executed via system() call to demonstrate RCE; indicators include suspicious child process spawning from Semantic Kernel agent hosts. T1059.001|T1059.006
Path
web3devtoolsx/solidity-pro
GitHub repository still hosting malicious extension T1195.002

3. MITRE ATT&CK

Code Title
T1195.002 Supply chain compromise of open‑source VS Code extensions
T1027 Obfuscated Files or Information - Obfuscated files or information to evade signature detection
T1204.001 User execution of malicious file (VS Code extension)
T1552.001 Unsecured credentials from web browsers (stealing browser profiles)
T1555 Credentials from password managers (e.g., 1Password tokens)
T1560.001 Credentials from password dumps (Mnemonic/seed phrases)
T1567.002 Exfiltration over web service (Telegram bot upload)
T1059.001 Command and Scripting Interpet: PowerShell - PowerShell command‑line interface used in payloads
T1059.003 VBScript execution (cscript/mshta) observed in droppers
T1568.002 Dynamic resolution for C2 (Cloudflare Workers)

4. Targets

Type Value
Sector Software Development / Blockchain Development

5. Article Details

6. Original text

Cybersecurity researchers have flagged a malicious Microsoft Visual Studio Code (VS Code) extension named Solidity Pro ("

solidity-pro
") that has been observed delivering a browser wallet and credential stealer. The names of the extensions are below -
helper-beeps.
solidity-pro
web3devtoolsx.
solidity-pro
Although neither of the extensions is now available on Open VSX, the GitHub repository for " web3devtoolsx/
solidity-pro
" continues to remain accessible as of writing. According to Yeeth Security , early iterations of the extensions – from 1.0.0 through v2.4.x – were found to beacon to Cloudflare Workers endpoints to retrieve an encrypted Python payload and execute it. Subsequent versions starting with v3.0.0, on the other hand, have shifted to a full-blown information stealer that can collect browser profiles, crypto wallets, source-control tokens, API keys, SSH keys, and Telegram bot tokens. The captured data is then exfiltrated via a Telegram bot upload. The list of data harvested by the stealer is as follows - GitHub ghp_ and github_pat_ tokens GitLab glpat- tokens AWS keys and session tokens Cloudflare cfat_ tokens OpenAI sk-, sk-proj-, and sk-ant- keys Telegram bot tokens Mnemonic and seed phrases MetaMask, Phantom, Rabby, Coinbase, Trust, Keplr wallet vaults Bitcoin WIF / xprv SSH private keys (PRIVATE KEY) URL credentials and 1Password MFA tokens The malware family is also equipped to bypass marketplace review, static scanning, and casual sandboxing through heavy obfuscation, intermediate clean versions to build trust, and randomized delayed activation that causes the malicious code to run several hours or days after installation. "By the time the malicious branch runs, the user has already decided the extension is useful, and automated scanners that only observe the package for minutes have moved on," Yeeth Security said.

"The obfuscation is not decorative; it splits strings across IIFE tables, reassembles them at runtime, and switches method names between releases so signature-based detection must track a moving target." The cybersecurity company said the activity shares the same high-level playbook as WhiteCobra , another threat cluster that was detected in September 2025 as distributing Lumma Stealer through malicious VS Code extensions. This is not the first time threat actors have published bogus Solidity extensions across open-source ecosystems . In June 2026, Yeeth Security flagged another extension named " ethdevtools.solidity-language-support " that impersonated a Solidity language-support tool for Ethereum developers, but harbored a delayed-activation clipboard stealer to scrape BIP-39 seed phrases, Ethereum private keys, and wallet addresses. "When a recognized crypto address is on the clipboard, it replaces the pasted value with an attacker-controlled address," it added. "The swap happens through vscode.env.clipboard.writeText, a first-party API call that requires no child_process, no network access, and no file writes.

Static scanners that only look for dangerous Node imports will not see it." The findings also coincide with the discovery of a number of rogue VS Code extensions and npm packages - An npm package called "

ascii-fetcher
," which embeds the malicious code in a dependency named "
@jaymara/jsononifier
" to decode an embedded command (in the observed case, "
calc.exe
") and run it via "child_process.exec" with "windowsHide" A set of 10 VS Code extensions that deliver a wide range of Windows-based BAT, JavaScript, and HTA droppers, with two of them bundling an npm dependency that uses a postinstall hook to fetch and execute a remote payload A VS Code extension named "
DigitalBarberTrim.html-entity-codec
" that drops a remote VSIX file in select versions after enumerating known VS Code forks like Cursor, Windsurf, Codium, and Positron, while serving a "nearly empty stub" in others to fly under the radar. Users who have installed the extensions are advised to remove them, inspect dependency graphs, block known command-and-control (C2) domains, and alert on use of cscript, mshta, cmd, curl, and powershell commands.