我安装了 mitmproxy 并启动了它 - 然后我将它的 CA 证书添加到 ubuntu 接受的 CA(复制到 /usr/local/share/ca-certificates/ 并添加到使用 update-ca-certificates 接受的证书).c...
我安装了 mitmproxy 并启动了它 - 然后我将它的 CA 证书添加到 ubuntu 接受的 CA(复制到 /usr/local/share/ca-certificates/ 并使用 update-ca-certificates 添加到接受中)。
curl www.google.com --proxy 127.0.0.1:8080
现在可以在没有警告的情况下运行。但是当我启动我的 dotnet 应用程序(在连接到 wsl2 的 vs code 中)并尝试访问外部 API 时,我得到了
> The SSL connection could not be established, see inner exception.
> ---> Azure.RequestFailedException: The SSL connection could not be established, see inner exception.
> ---> System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception.
> ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid because of errors in the certificate
> chain: RevocationStatusUnknown, OfflineRevocation
(我 http://127.0.0.1:8080 http://127.0.0.1:8080
有什么想法可以确保 dotnet 接受我的 mitm 证书,以便我可以看到 mitmproxy 中的流量?