[Aikido] Fix security issue in tar via minor version upgrade from 7.5.6 to 7.5.15 in npm#4
Open
aikido-autofix[bot] wants to merge 1 commit into
Open
Conversation
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.
Upgrade tar to fix path traversal vulnerabilities in hardlink handling that allow arbitrary file read/write access outside extraction directories.
✅ 2 CVEs resolved by this upgrade
This PR will resolve the following CVEs:
🤖 Remediation details
Fix security vulnerabilities in
tardirect dependencyShort summary
This PR remediates two high-severity CVEs in the
tarpackage. The fix is applied directly innpm/package.json(wheretaris declared as a direct dependency) and is reflected in the updatednpm/package-lock.json.tar
taris a direct dependency declared innpm/package.json. Its version spec was raised from^7.5.3to^7.5.8to establish a semver floor that excludes the two vulnerable releases, andnpm install --package-lock-onlyresolved the lockfile to7.5.15. The update was necessary because both CVE-2026-24842 (patched in 7.5.7) and CVE-2026-26960 (patched in 7.5.8) affect the previously resolved version7.5.6; bumping the declared minimum to^7.5.8ensures neither vulnerability can be re-introduced by a future lockfile refresh within the same caret range.Version changes
tar^7.5.3→ resolved7.5.6^7.5.8→ resolved7.5.15