NPM supply-chain audit and vulnerability fixes#12
Open
agit8or1 wants to merge 1 commit into
Open
Conversation
Defensive sweep against the active Shai-Hulud / Mini Shai-Hulud npm supply-chain incident. All work in --package-lock-only --ignore-scripts mode; no installs, no script execution. agent/: - Had package.json but NO package-lock.json — installs would pull "latest matching" versions without integrity verification, exactly the attack window the current campaign exploits. Generated a clean lockfile via `npm install --package-lock-only --ignore-scripts`. Lockfile audits clean (0 advisories). backend/: - 3 moderate (qs / body-parser / express via qs) → 0. frontend/: - 2 moderate (react-router / react-router-dom) → 0. No supply-chain indicators found: - No @tanstack/* / @antv/* / @redhat-cloud-services/* / @mistralai/* / @bitwarden/cli / plain-crypto-js declared anywhere - No axios@1.14.1 / axios@0.30.4 (resolved 1.16.1 in backend+frontend) - All resolutions integrity-pinned to registry.npmjs.org - No git+ / github: / file: / http: resolutions - No .npmrc / .yarnrc anywhere Follow-up: switch CI installs to `npm ci` (lockfile-strict) so the integrity gap can't reopen. See per-package SECURITY-NPM-AUDIT.md and npm-supply-chain-audit-report.md (global, covers Depl0y + St0r + rem0te) for details.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
chore/npm-supply-chain-audit-2026-06Results
No obvious Shai-Hulud-style compromise indicators were found.
Notes
Follow-up
See
npm-supply-chain-audit-report.mdand related SECURITY-NPM-AUDIT files for remaining advisories and manual migration notes.