-
Notifications
You must be signed in to change notification settings - Fork 82
fix(path-compression): CVE-2025-3445 #2731
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
fix(path-compression): CVE-2025-3445 #2731
Conversation
It appears the build is failing due to auth issues only? @kurtosis-tech/engineers, @tedim52 - I believe this is ready for review. |
Hey @scharissis - will take a look at this today. |
Hey @tedim52 , let me know if you have any questions on this or if I can help progress it in any way. |
require.NoError(t, err) | ||
require.Equal(t, compressedDataBytes, compressedDataBytesAgain) | ||
require.Equal(t, sizeAgain, size) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the reason for removing the check between the previous hash and the new hash size?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They no longer match.
My assumption was that the compression algorithm changed and that this isn't actually an important invariant to be maintained or tested.
Is this true?
Replaced the deprecated mholt/archiver with the new mholt/archives, in the process addressing security vulnerability CVE-2025-3445. See: https://nvd.nist.gov/vuln/detail/CVE-2025-3445
c4e96d3
to
bf837cb
Compare
Description
Replaced the deprecated mholt/archiver with the new mholt/archives, in the process addressing security vulnerability CVE-2025-3445. See: https://nvd.nist.gov/vuln/detail/CVE-2025-3445
Is this change user facing?
NO
References (if applicable)
https://nvd.nist.gov/vuln/detail/CVE-2025-3445