npm audit issue with underscore.string
See original GitHub issueNot sure if this is an issue with this package to deal with or one lower, but I figured I’d start here. 😃 npm audit
reveals two issues with this package related to underscore.string:
handlebars-helpers > helper-markdown > remarkable > argparse > underscore.string
Issue Analytics
- State:
- Created 5 years ago
- Reactions:3
- Comments:7 (7 by maintainers)
Top Results From Across the Web
Arbitrary Code Execution error on underscore npm package
Had raised this to Alchemy as their @alch/alchemy-web3 latest package dependency was not upgraded to use the patched version of "Underscore" ...
Read more >NPM audit issue - DannyDainton/newman-reporter-htmlextra
Describe The Problem Installing this library triggers NPM audit warnings. ... helper-markdown > remarkable > argparse > underscore.string ...
Read more >underscore - npm
Underscore. js is a utility-belt library for JavaScript that provides support for the usual functional suspects (each, map, reduce, filter...) ...
Read more >@chezearth/string - npm Package Health Analysis | Snyk
I have only updated some dependencies to remove vulnerabilities that were identified by NPM's audit. Travis builds successfully for Node 4, 6, ...
Read more >npm overrides to solve vulnerability issues - YouTube
NPM overrides to solve vulnerability issues, when a dependency has not solved his issues and we want to override it with a community...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
argparse > underscore.string
The problem is without a doubt with
argparse
.Newer versions of argparse might not be using
underscore.string
, but they should (and can easily) do a patch of an older version of argparse so that all users receive the patch. If it’s patched in argparse, then it will automatically be used in all downstream libraries unless they are version locked.Yes, one would file an issue with
argparse
. If it’s not fixed in argparse, then every single minor and major version of every package that uses argparse will need to release a patch.Edit: also, to be clear, this issue does not have any impact on handlebars-helpers, since the affected code is not used (argparse is only used in the remarkable CLI, which is not exposed anywhere on the API)