[DependOnMe] Critical security fix - 1 issue(s)#1794
Closed
dependonme-deriv wants to merge 2 commits into
Closed
Conversation
Automatically regenerated by DependOnMe bot after package.json update. Branch: dependonme/bulk-fix-0d73f769 Package manager: npm
Dependency ReviewThe following issues were found:
OpenSSF ScorecardScorecard details
Scanned Manifest Filespackage-lock.json
|
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.
Bulk Security Fix
This pull request was automatically generated by DependOnMe to fix 1 critical security issue(s).
Issues Fixed
Files Modified
package.jsonAI Summary
Fixed 1 security issue:
CVE-2026-9277 — shell-quote ≤ 1.8.3:
quote()does not escape newlines in object.opvalues"shell-quote": "^1.8.4"to both theoverridessection (npm) and theresolutionssection (yarn/berry) inpackage.json.shell-quoteis a transitive dependency (not a direct dependency). The vulnerability allows injection of newline characters via object.opvalues in thequote()function, which could enable command injection in contexts where shell-quote is used to construct shell commands.shell-quoteis a transitive dependency that may be pulled in by multiple packages (e.g.,webpack-dev-server,cross-env, or other build tools). Identifying and upgrading every root package that transitively depends on it would be fragile and potentially introduce other breaking changes. A single override is the safest and most targeted fix.quote()function with no API changes.quote()— purely additive security hardening with no API surface changes.🧪 Testing Checklist:
npm installto regeneratepackage-lock.jsonwith the overridden versionnode_modules/shell-quote/package.jsonshows version1.8.4or higher after installnpm testnpm run buildnpm run startto confirm dev server starts correctly🔧 Manual Steps Required:
npm install(ornpm ciin CI) to regenerate the lock file with the patchedshell-quoteversion.npm ls shell-quote— all instances should show1.8.4or higher.This PR was created by DependOnMe - Automated Security Issue Management