gpt4 book ai didi

php curl - 允许使用过期证书进行调用

转载 作者:太空宇宙 更新时间:2023-11-03 14:49:45 26 4
gpt4 key购买 nike

使用 curl 调用服务器。使用 ssl 证书在协议(protocol) https 上建立连接。

使用下面的代码。

curl_setopt($ch, CURLOPT_URL, $szUrl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 1);
curl_setopt($ch, CURLOPT_CAINFO, $this->aConfig['certificatePath']);

我意识到尽管证书已过期,但 curl 仍能正常运行。为什么?无法验证证书是否已过期?

这东西暴露了哪些安全问题?

最佳答案

支持:

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 1);

从 cURL 7.28.1 中删除。

使用

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);

应该可以解决问题。

关于php curl - 允许使用过期证书进行调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35504771/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com