Search for packages
purl | pkg:maven/io.netty/netty-handler@4.1.109.Final |
Next non-vulnerable version | 4.1.118.Final |
Latest non-vulnerable version | 4.1.118.Final |
Risk | 4.0 |
Vulnerability | Summary | Fixed by |
---|---|---|
VCID-56qx-e3h3-2kbr
Aliases: CVE-2025-24970 GHSA-4g8c-wm8x-jfhw |
SslHandler doesn't correctly validate packets which can lead to native crash when using native SSLEngine ### Impact When a special crafted packet is received via SslHandler it doesn't correctly handle validation of such a packet in all cases which can lead to a native crash. ### Workarounds As workaround its possible to either disable the usage of the native SSLEngine or changing the code from: ``` SslContext context = ...; SslHandler handler = context.newHandler(....); ``` to: ``` SslContext context = ...; SSLEngine engine = context.newEngine(....); SslHandler handler = new SslHandler(engine, ....); ``` |
Affected by 0 other vulnerabilities. |
Vulnerability | Summary | Aliases |
---|---|---|
This package is not known to fix vulnerabilities. |
Date | Actor | Action | Vulnerability | Source | VulnerableCode Version |
---|---|---|---|---|---|
2025-07-03T19:20:35.432345+00:00 | GitLab Importer | Affected by | VCID-56qx-e3h3-2kbr | https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/io.netty/netty-handler/CVE-2025-24970.yml | 37.0.0 |