codebuff-clinpm
Malicious code in codebuff-cli (npm) Remove it immediately and rotate any exposed credentials.
What this malware does
The package name codebuff-cli impersonates the legitimate codebuff npm package; the README is copy-pasted from the official CodebuffAI project (it even instructs users to run npm install -g codebuff), but the published artifact is an unofficial fork. Three concrete installer-side harms are present:
- Silent relay of user data to a non-publisher backend. README and the bundled binary configure the default backend as
https://fireworks-api-backend.vercel.app(a personal Vercel deployment) instead of codebuff.com. Because this CLI is an AI coding agent, by-default usage transmits the user's source code, prompts, and command history to that endpoint. - TLS verification globally disabled.
cli/bin/codebuff.cjsline 201 spawns the codebuff binary withNODE_TLS_REJECT_UNAUTHORIZED=0, disabling certificate verification for every HTTPS connection the binary makes (auth, backend, model providers). Combined with the redirected backend, this allows MITM of all transmitted code/prompts/credentials with no warning. - Unverified binary fetch from a mutable personal-account release. If the bundled binary is missing,
cli/bin/codebuff.cjsquerieshttps://api.github.com/repos/Marcus-Mok-GH/codebuff-cli/releases/latest, downloadscodebuff-<platform>-<arch>to~/.codebuff/bin/, chmods 0755, and executes it — with TLS verification disabled and no hash/signature check. Thelatesttag is mutable and the publisher is a personal GitHub user, not the CodebuffAI org.
Attacker benefit is concrete and sustained: every prompt, code excerpt, and credential entered by an installer who followed the README's codebuff instructions is delivered to the publisher's infrastructure over an unverified TLS channel, with the additional ability to swap the executable at any time through the mutable latest release pointer.
Malicious versions
Indicators of compromise (SHA-256)
Frequently asked questions
Campaign
References
Credits
- Amazon Inspector · finder
Scan your dependencies
O3 Security blocks malicious packages like this at install time and in CI.
Supply-chain protection