Question: Snyk incorrectly flagging v1.13.6-x86_64-linux for CVE-2022-29181 #2561
-
I understand that we have v1.13.6 meant to address CVE-2022-29181, but I found out it's only resolved for We use Snyk and here is the message we've got:
Here is the chunk of our Gemfile.lock: GEM
remote: https://rubygems.org/
specs:
....
nokogiri (1.13.6)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
nokogiri (1.13.6-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.13.6-x86_64-linux)
racc (~> 1.4)
...
PLATFORMS
ruby
x86_64-darwin-21
x86_64-linux
DEPENDENCIES
...
nokogiri
...
BUNDLED WITH
2.2.29 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi! Thanks for raising this, that does look confusing. I'm not familiar with Snyk's product, so you should probably ask them this question. However my guess is that their software is confused by the native platform string In summary: this message appears to be in error and you should talk to your vendor about it! |
Beta Was this translation helpful? Give feedback.
Hi! Thanks for raising this, that does look confusing.
I'm not familiar with Snyk's product, so you should probably ask them this question. However my guess is that their software is confused by the native platform string
-x86_64-linux
in the gem name and has incorrectly identified it as something different from plainv1.13.6
. However, it's not -- they are the same software, but one contains precompiled libraries and one does not.In summary: this message appears to be in error and you should talk to your vendor about it!