create-react-app
create-react-app copied to clipboard
react-scripts is using postcss@^7.0.35 which has security vulnerability
[email protected] requires postcss@^7.0.35 via a transitive dependency on [email protected]
I see the latest version of resolve-url-loader is 5.x, and it depends on [email protected]. So can we update resolve-url-loader to a non-vulnerable version? Thank you!
A link to the CVE: https://nvd.nist.gov/vuln/detail/CVE-2023-44270
I had to use overrides in my package.json to overcome there errors:
"overrides": {
"nth-check": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
"postcss": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz"
}
However the dependency should be updated in the main branch
@Dror-Bar thank you, you are going to be in my video on using Trivy to fix vulnerabilities with this suggestion -- Thank you!!!