Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 912 Bytes

pdsa-2023-011_cn.md

File metadata and controls

32 lines (20 loc) · 912 Bytes

PDSA-2023-011: Null pointer dereference in paddle.nextafter

CVE编号

CVE-2023-52302

影响

输入张量的维度异常时,paddle.nextafter会引发空指针解引用,PoC代码如下:

import paddle
import numpy as np

paddle.nextafter(
    x=paddle.to_tensor(np.random.uniform(-6666666, 100000000, [1, 2]).astype(np.float32)),
    y=paddle.to_tensor(np.random.uniform(-6666666, 100000000, [0, 0, 0, 0, 0]).astype(np.float32))
)

补丁

我们在commit 19da5c0c4d8c5e4dfef2a92e24141c3f51884dcc中对此问题进行了补丁。 修复将包含在飞桨2.6.0版本当中。

更多信息

请参考我们的安全指南以获得更多关于安全的信息,以及如何与我们联系问题。

贡献者

此漏洞由 Tong Liu of CAS-IIE 提交。