Add .npmrc ignore-scripts=true (Miasma install-hook mitigation)#3
Open
dbutts29 wants to merge 1 commit into
Open
Add .npmrc ignore-scripts=true (Miasma install-hook mitigation)#3dbutts29 wants to merge 1 commit into
dbutts29 wants to merge 1 commit into
Conversation
Blocks dependency lifecycle scripts (preinstall/install/postinstall) from auto-executing on npm install — the Miasma / Shai-Hulud install-hook vector. Blunt fleet-wide mitigation; does not stop runtime import/require malware. PLA-1595 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Part of PLA-1595 (phase 2 of PLA-1580 — Miasma install-hook mitigation).
Adds a repo-local
.npmrcwithignore-scripts=trueso dependency lifecycle scripts (preinstall/install/postinstall) do not auto-execute onnpm install— the execution vector the Miasma / Shai-Hulud worm relies on.This is the blunt, immediate mitigation applied across the repo fleet. It does not stop malware that runs at runtime via normal
import/require. If this repo has a dependency that needs a real build step (native/node-gyp), install/CI may go red — that is expected; triage per repo (allow-list the build, or move to pnpm's default-deny + allow-list model).PLA-1595