You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a case where strip-ansi-cjs resolves to https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz. This is a potential Lockfile Poisoning attempt because the package name does not match the conventional URL for the artifact. We need to do the following
Review npm specification on various conventions for URLs
Update --trusted-registries option handling to handle such conventions
Currently vet throws error
** Package `strip-ansi-cjs` resolved to an URL `https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz` that does
not follow the package name path convention
** Package `wrap-ansi-cjs` resolved to an URL `https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz` that does not
follow the package name path convention
** Package `string-width-cjs` resolved to an URL `https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz` that
does not follow the package name path convention
The text was updated successfully, but these errors were encountered:
There is a case where
strip-ansi-cjs
resolves tohttps://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz
. This is a potential Lockfile Poisoning attempt because the package name does not match the conventional URL for the artifact. We need to do the followingnpm
specification on various conventions for URLs--trusted-registries
option handling to handle such conventionsCurrently
vet
throws errorThe text was updated successfully, but these errors were encountered: