-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[BUG] Vulnerabilities in dependencies of exceljs package #2829
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
Comments
There is also a downstream dependency vulnerability for
Reference: https://security.snyk.io/vuln/SNYK-JS-INFLIGHT-6095116 |
I found a fix. For {
"name": "...",
"resolutions": {
"exceljs/**/archiver": "^7.0.1",
"exceljs/**/unzipper": "^0.12.3"
},
"dependencies": {
"exceljs": "^4.4.0"
}
} After running For {
"name": "...",
"dependencies": {
"exceljs": "^4.4.0"
},
"overrides": {
"exceljs": {
"archiver": "^7.0.1",
"unzipper": "^0.12.3"
}
}
} I tested it in my project and no issues were raised nor any content changes in the generated excel files after the upgrade. |
This is the solution we went with in our project using pnpm as well. |
any update on this issue? in the meantime, I'm also using @henryfung3a27 solution as a workaround. thanks! |
π Bug Report
Lib version: 4.4.0
Steps To Reproduce
Node.js Package: lodash β€ 4.17.15 - Remote Prototype Pollution Vulnerability - 4.17.16
The text was updated successfully, but these errors were encountered: