fix(agentex-ui): bump tar 7.5.20 -> 7.5.22 (GHSA-r292-9mhp-454m) - #382
Merged
Merged
Conversation
Raises the tar override floor to ^7.5.21 and re-locks agentex-ui/package-lock.json, resolving tar to 7.5.22 (>= fixed 7.5.21). Fixes GHSA-r292-9mhp-454m (node-tar uncontrolled recursion / uncatchable stack-overflow DoS). tar is a transitive dependency of @tailwindcss/oxide@4.1.11 (requires tar ^7.4.3), which supports the 7.5.x line; this is a same-minor patch bump with no dependency contract change. Resolves GFDVR-20835. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
scale-ballen
enabled auto-merge (squash)
July 29, 2026 11:02
cloudyadi
approved these changes
Jul 29, 2026
scale-ballen
disabled auto-merge
July 29, 2026 12:33
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
Remediates GHSA-r292-9mhp-454m (MEDIUM) in
tarfor theagentex-uiservice.tar(node-pkg)mapHas/filesFilterallows an uncatchable stack-overflow DoS via a crafted long-path tar with member selection.Change
taris a transitive dependency (pulled in by@tailwindcss/oxide@4.1.11, which requirestar ^7.4.3) and is force-pinned via the rootoverridesblock. This PR:overrides.tarfloor from^7.5.16to^7.5.21inagentex-ui/package.jsonso a future re-lock can never float back below the fix.agentex-ui/package-lock.json(lockfile-only), resolvingtarto 7.5.22 (latest patch satisfying the new floor).This is a same-minor (7.5.x) patch bump with no dependency-contract change;
@tailwindcss/oxide@4.1.11supports the 7.5.x line, so the transitive pin is safe.Verification
npm ci --dry-runsucceeds — lockfile is in sync withpackage.json(CInpm cigate passes).overrides.tarand the singlenode_modules/tarlockfile entry changed; no transitive-closure churn, no registry flips (public npm preserved), no app-code changes.tar-7.5.20.tgzis fully removed from the lockfile.CVEs closed
Resolves GFDVR-20835.
🤖 Generated with Claude Code
Greptile Summary
This PR remediates GHSA-r292-9mhp-454m by patching the transitive
tardependency from 7.5.20 to 7.5.22 in theagentex-uiservice. The fix uses the existingoverridesblock to pintarand raises the floor so future re-locks cannot float back to a vulnerable version.package.json:overrides.tarfloor raised from^7.5.16to^7.5.21, ensuring the constraint permanently excludes the vulnerable 7.5.16–7.5.20 range.package-lock.json: Lockfile-only update resolvingtarto 7.5.22 with an updated integrity hash; no other dependencies were changed.Confidence Score: 5/5
Minimal, targeted lockfile-only change with no app code touched — safe to merge.
The diff is entirely confined to raising a semver floor in
overridesand re-locking a single transitive dependency to a newer patch. The 7.5.x line is fully compatible with@tailwindcss/oxide@4.1.11, and the change introduces no new dependencies or logic.Files Needing Attention: No files require special attention.
Important Files Changed
overrides.tarfloor from^7.5.16to^7.5.21to prevent the lockfile from resolving back to a vulnerable version on future re-locks.tarfrom 7.5.20 to 7.5.22 with updated integrity hash; no transitive-closure churn or other dependency changes.Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A["@tailwindcss/oxide@4.1.11"] -->|"requires tar ^7.4.3"| B["tar (transitive)"] C["agentex-ui/package.json\noverrides.tar"] -->|"force-pin floor"| B B -->|"Before: 7.5.20\n(GHSA-r292-9mhp-454m)"| D["❌ Vulnerable"] B -->|"After: 7.5.22\n(patched)"| E["✅ Fixed"] C -->|"floor: ^7.5.16 → ^7.5.21"| F["Future re-locks cannot\nresolve < 7.5.21"]Reviews (1): Last reviewed commit: "fix(agentex-ui): bump tar 7.5.20 -> 7.5...." | Re-trigger Greptile