Skip to content

Commit dedee4e

Browse files
SandeepSambaclaude
andcommitted
Add .trivyignore for npm-bundled CVEs pending upstream fix
CVE-2026-27903, CVE-2026-27904 (minimatch) and CVE-2026-29786 (tar) are present in packages bundled inside npm itself, not in our application dependencies. They cannot be resolved by updating package.json — a fix requires a new npm release. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 77d0d2f commit dedee4e

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.trivyignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# CVE-2026-27903: minimatch - DoS via unbounded recursive backtracking in glob patterns
2+
# CVE-2026-27904: minimatch - DoS via catastrophic backtracking in glob expressions
3+
# CVE-2026-29786: tar - Hardlink path traversal via drive-relative linkpath
4+
#
5+
# These vulnerabilities exist in packages bundled within npm itself (not in our application
6+
# dependencies). They cannot be resolved by updating our own package.json — a fix requires
7+
# a new npm release that ships patched versions of minimatch and tar internally.
8+
#
9+
# TODO: Remove these ignores once a fixed version of npm is available and deployed in the
10+
# base image. Track the npm release notes for minimatch >= <fixed-version> and tar >= <fixed-version>.
11+
CVE-2026-27903
12+
CVE-2026-27904
13+
CVE-2026-29786

0 commit comments

Comments
 (0)