CVE-2025-24970

HIGH7.5EPSS 0.95%

SslHandler doesn't correctly validate packets which can lead to native crash when using native SSLEngine

發布日:2025/2/10修改日:2026/2/4
也稱為:GHSA-4g8c-wm8x-jfhwCGA-j5xr-m8mh-cjc8

描述

### 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, ....); ```

受影響套件(1)

CVSS 分數

來源版本嚴重程度向量
osvCVSS 3.1HIGH7.5CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

參考連結(7)