# npm audit report
got <11.8.5
Severity: moderate
Got allows a redirect to a UNIX socket - https://github.com/advisories/GHSA-pfrx-2q88-qq97
fix available via `npm audit fix --force`
Will install nodemon@1.3.3, which is a breaking change
node_modules/got
package-json <=6.5.0
Depends on vulnerable versions of got
node_modules/package-json
latest-version 0.2.0 - 5.1.0
Depends on vulnerable versions of package-json
node_modules/latest-version
update-notifier 0.2.0 - 5.1.0
Depends on vulnerable versions of latest-version
node_modules/update-notifier
nodemon >=1.3.5
Depends on vulnerable versions of update-notifier
node_modules/nodemon发布于 2022-07-19 14:21:01
编辑package.json应该可以做到这一点:
“重写”:{ "got":"^12.1.0“}
“解决方案”:{ "got":"^12.1.0“}
发布于 2022-10-11 03:07:54
从咨询- https://github.com/advisories/GHSA-pfrx-2q88-qq97,这可能会给你一个更完整的回应。
"overrides": {
"got@<11.8.5": "11.8.5",
"got@>=12.0.0 <12.1.0 ": "^12.1.0"
}https://stackoverflow.com/questions/72828734
复制相似问题