-
Over in Cloud PAL, we've been getting some issues about security vulnerabilities coming from Are these vulnerabilities applicable to the way that Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @abbeyhrt! 👋 This is a great question and I think applies to any CVE vulnerabilities that get flagged through tooling or commands like In general, these warnings are coming from a development dependency when There was a similar thread on the In it, Dan also recommends a way to correct these vulnerabilities in transitive dependencies if the false positives are causing an issue in your deployment pipeline. I will add that if there is a security vulnerability that does appear in the code with how it is used in CI or will impact a user, we will always want to hear about it and will immediately address it. However, that doesn't seem to be the case here. Hope this helps! |
Beta Was this translation helpful? Give feedback.
-
Thanks for your response @joshblack! Just to be sure, is this also applicable to the ReDoS vulnerability detected it |
Beta Was this translation helpful? Give feedback.
Hi @abbeyhrt! 👋
This is a great question and I think applies to any CVE vulnerabilities that get flagged through tooling or commands like
npm audit
.In general, these warnings are coming from a development dependency when
@carbon/telemetry
is included. As a result, they can be considered false positives because none of the code will end up in a build. Instead, these dependencies are used for tooling in CI environments and are never brought into JavaScript code and subsequently exploited.There was a similar thread on the
create-react-app
project that we based this response on. Specifically this comment and the one below: facebook/create-react-app#8529 (comment)In it, Dan also recommends …