Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"electron-store": "8.2.0",
"fs-extra": "11.2.0",
"git-describe": "4.1.1",
"lodash": "4.17.21",
"lodash": "4.17.23",
"ms": "2.1.3",
"native-process-working-directory": "^1.0.2",
"node-pty": "1.0.0",
Expand Down
7 changes: 6 additions & 1 deletion app/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,12 @@ locate-path@^3.0.0:
p-locate "^3.0.0"
path-exists "^3.0.0"

lodash@4.17.21, lodash@^4.17.21:
lodash@4.17.23:
version "4.17.23"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.23.tgz#f113b0378386103be4f6893388c73d0bde7f2c5a"
integrity sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==

lodash@^4.17.21:
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security-critical critical

This entry indicates that the vulnerable version lodash@4.17.21 is still present as a transitive dependency, specifically required by git-describe@4.1.1. As a result, the Prototype Pollution vulnerability (SNYK-JS-LODASH-15053838) that this PR aims to fix is not fully remediated.

To properly resolve this, you must force all instances of lodash to the patched version. You can achieve this by adding a resolutions field to your app/package.json:

"resolutions": {
  "lodash": "4.17.23"
}

After adding this block, please run yarn install to update the yarn.lock file. This will ensure the vulnerability is completely removed from your project's dependency tree.

version "4.17.21"
resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
Expand Down
Loading