


























On September 8, 2025, a maintainer’s npm account was phished and used to publish malicious versions of widely used packages (including debug and multiple packages in the chalk ecosystem). The injected code appears designed to execute in the browser, hooking web APIs to silently rewrite cryptocurrency addresses and wallet interactions, while being largely inert in pure Node.js/server contexts. npm and maintainers have since removed/overwritten the tainted versions and begun account recovery, but organizations that installed these versions during the exposure window should assume user-browser impact is possible, audit build artifacts, and rotate secrets where appropriate.
Qix-) with a high-quality phishing email impersonating npm support (domain npmjs[.]help) and gained the ability to publish new versions directly to the npm registry without source-repo changes.debug@4.4.2) did not match the GitHub repo, indicating a registry-side publish from the compromised account/token rather than a code PR.This incident is evolving; times below reflect currently available public reports.
debug@4.4.2 as compromised; issue opened in the debug repo.chalk maintainer publishes fixed releases (e.g., chalk@5.6.2) to overwrite the compromised builds; related packages get patched bumps.The following versions were reported as malicious during the window (now removed/overwritten). Treat as evolving; verify against the package page and GHSA/OSV entries:
debug@4.4.2chalk@5.6.1 (patched as 5.6.2)supports-hyperlinks@4.1.1, chalk-template@1.1.1, slice-ansi@7.1.1, wrap-ansi@9.0.1, has-ansi@6.0.1, strip-ansi@7.1.1, ansi-styles@6.2.2, supports-color@10.2.1, ansi-regex@6.2.1, plus additional Qix-maintained packages in the color/ansi family (e.g., color-convert@3.1.1, color-name@2.0.1, color-string@2.1.1, is-arrayish@0.3.3, simple-swizzle@0.2.3, backslash@0.2.1). See in-progress GHSA tracking.Web apps that installed or rebuilt during the exposure window and shipped bundles that include the tainted versions to browsers. BleepingComputer summarizes additional criteria (fresh install during the window, lockfile created then, vulnerable transitives). Server-only consumers may be less exposed since the payload tries to run in a window context.
Phishing & account control
The attacker used a convincing npm support email from support@npmjs.help to capture credentials/2FA reset, then published new versions under the maintainer’s authority.
Registry publish without repo changes Malicious packages were pushed to npm even though the GitHub source did not contain the changes (classic registry-only supply-chain poison).
Browser-side interceptor payload
The injected code obfuscates strings and hooks fetch, XMLHttpRequest, and common Web3 wallet APIs (e.g., window.ethereum) to detect/replace crypto recipients and approvals with attacker-controlled addresses. This appears to target frontend usage rather than Node-only execution.
The npq security auditing tool that I built a decade ago provides pre-installation package verification that could have significantly mitigated this supply-chain attack from harming end users (not the maintainer).
Here’s how npq’s security marshalls would have flagged the malicious packages:
npq’s Age Marshall warns about packages published within 22 days, which would have immediately flagged all malicious versions published on September 8:
$ npq install debug@4.4.2
Packages with issues found:
┌─
│ > debug@4.4.2
│
│ ✖ Supply Chain Security · Detected a recently published version: published 1 day ago
└─
Continue install ? (y/N)
Would you have installed the package? I hope not! If you did, then you took the risk knowingly.
But how would you have known about this? if you had only relied on npm or pnpm or yarn, you would have had no idea that the package was freshly published and potentially suspicious. If you had used npq, you would have been warned and given the chance to abort the installation.
The version-maturity marshall provides an additional layer by warning about specific versions published within 7 days, catching freshly published malicious releases:
$ npq install chalk@5.6.1
│ ⚠ Supply Chain Security · Recently published version detected: published 6 hours ago
npq’s signature and provenance verification would have detected the registry/repository discrepancy that characterized this attack:
Since the malicious versions were published directly to the registry without corresponding source changes, these checks would likely have failed or shown mismatches.
Unlike automated package managers, npq forces explicit user decision-making when security issues are detected:
If organizations had adopted npq as their primary package installation tool (via aliases like alias npm='npq-hero'), the attack’s impact would have been dramatically reduced:
To protect against similar future attacks, consider:
# Install npq globally
npm install -g npq
# Alias your package manager to use npq
alias npm='npq-hero'
alias yarn='NPQ_PKG_MGR=yarn npq-hero'
alias pnpm='NPQ_PKG_MGR=pnpm npq-hero'
# Enable all security features (default behavior)
npq install <package> # Includes age, signature, provenance checks
Note: While npq significantly improves security posture, it works best as part of a defense-in-depth strategy including lockfile usage, SCA scanning, and secure development practices.
A. Identify if you consumed bad versions
npm ls <pkg> or pnpm why <pkg> / yarn why <pkg> across services to reveal transitive usage paths.B. Inspect built artifacts shipped to browsers
_0x index decoders and numeric lookups). This is a heuristic, not a signature. (See news analysis indicating a browser-hooking interceptor.)C. IOC hints (from public reporting)
npmjs[.]help.https://websocket-api2[.]publicvm.com/images/jpg-to-png.php?...
Use your proxy/DNS logs to look for egress to that host during developer logins.D. SCA/Advisory references
Pin & rebuild safely
chalk@5.6.2 and related) and rebuild artifacts.Lock down installs
npm ci, pnpm install --frozen-lockfile, yarn install --immutable) to prevent surprise minor bumps.save-exact=true for critical apps and explicit resolutions for risky transitive trees.Rotate secrets if exposure is plausible
Harden maintainer security (for orgs that publish)
Use pre-installation security auditing
npm install -g npq && alias npm='npq-hero'Report sightings
chalk family has fixed releases (e.g., 5.6.2). The debug malicious version (4.4.2) has been removed from npm. Continue to monitor GHSA/OSV and package pages for authoritative version guidance.debug / chalk family until verified clean.npmjs[.]help phish and publicvm.com egress; block and alert.This write-up consolidates public reporting and maintainer statements available at publish time. Continue tracking upstream issues/advisories for updates.
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。