Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): fix elliptic audit issue #2272

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
19 changes: 18 additions & 1 deletion audit-ci.jsonc
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
{
"$schema": "https://github.com/IBM/audit-ci/raw/main/docs/schema.json",
"low": true,
"allowlist": []
"allowlist": [
// https://github.com/advisories/GHSA-rmvr-2pp2-xj38
Copy link
Contributor Author

Choose a reason for hiding this comment

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

i would've bumped these packages but they moved to ESM only, so we can't easily upgrade right now

// Octokit request package vulnerable to ReDoS
// Only used in development scripts for GitHub API interactions
"GHSA-rmvr-2pp2-xj38",
// https://github.com/advisories/GHSA-h5c3-5r3r-rr8q
// Octokit plugin-paginate-rest vulnerable to ReDoS
// Only used in development scripts for GitHub API pagination
"GHSA-h5c3-5r3r-rr8q",
// https://github.com/advisories/GHSA-xx4v-prfh-6cgc
// Octokit request-error package vulnerable to ReDoS in authorization header processing
// Only used in development scripts for GitHub API error handling
"GHSA-xx4v-prfh-6cgc",
// https://github.com/advisories/GHSA-x4c5-c7rf-jjgv
// Octokit endpoint package vulnerable to ReDoS in preview header processing
// Only used in development scripts for GitHub API endpoint handling
"GHSA-x4c5-c7rf-jjgv"
]
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"**/@walletconnect/ethereum-provider": "2.13.1",
"**/@ethersproject/providers/ws": "7.5.10",
"**/@synthetixio/synpress/ws": "8.17.1",
"**/elliptic": "6.6.0"
"**/elliptic": "6.6.1"
},
"keywords": [],
"author": "",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6576,10 +6576,10 @@ electron-to-chromium@^1.4.431:
resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.431.tgz"
integrity sha512-m232JTVmCawA2vG+1azVxhKZ9Sv1Q//xxNv5PkP5rWxGgQE8c3CiZFrh8Xnp+d1NmNxlu3QQrGIfdeW5TtXX5w==

elliptic@6.5.4, elliptic@6.6.0, elliptic@^6.5.4:
version "6.6.0"
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.6.0.tgz#5919ec723286c1edf28685aa89261d4761afa210"
integrity sha512-dpwoQcLc/2WLQvJvLRHKZ+f9FgOdjnq11rurqwekGQygGPsYSK29OMMD2WalatiqQ+XGFDglTNixpPfI+lpaAA==
elliptic@6.5.4, elliptic@6.6.1, elliptic@^6.5.4:
version "6.6.1"
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.6.1.tgz#3b8ffb02670bf69e382c7f65bf524c97c5405c06"
integrity sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==
dependencies:
bn.js "^4.11.9"
brorand "^1.1.0"
Expand Down
Loading