-
Notifications
You must be signed in to change notification settings - Fork 411
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
Bump netty for CVE-2024-47535 #3241
Conversation
@russwyte I updated to |
Sure - I will look. |
@guizmaii Fortunately it was easy fix - just a deprecated method. 👍 |
@@ -131,7 +131,7 @@ private[zio] class ServerSSLDecoder(sslConfig: SSLConfig, cfg: Server.Config) ex | |||
val httpBehaviour = sslConfig.behaviour | |||
if (in.readableBytes < 5) | |||
() | |||
else if (SslHandler.isEncrypted(in)) { | |||
else if (SslHandler.isEncrypted(in, false)) { |
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.
@russwyte Just for my information, what is this false
for?
Found the PR making the change: netty/netty#14243
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.
LGTM
I just went with the strongly suggested option. |
ce38763
to
ef31a54
Compare
Addresses CVE alert I have been getting from github dependabot.
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-47535