使用curl通过SOCKS5代理(tor)执行https请求

时间:2014-07-04 07:23:41

标签: curl proxy

我的系统(debian)上有TOR设置,经过测试并运行良好。我想要做的是通过此设置代理HTTPS请求。

只是https有效: curl https://www.reg.ru/whois/?dname=google.com

Tor + http工作 curl --socks5 127.0.0.1:9050 http://stackoverflow.com/

但使用https的广告无效:

curl --socks5 127.0.0.1:9050 https://www.torproject.org/download/download.html.en

我收到错误curl: (6) Failed to resolve "www.torproject.org" for SOCKS5 connect.

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:40)

我遇到了类似的问题,并使用选项--socks5-hostname代替--socks5来指定curl的代理解决了问题。