如何使用socks5连接和隐藏我的ip?我想过使用cURL,但它只适用于http(s)。如何用发送套接字数据隐藏ip或连接?有可能吗?
socket_connect($this->sock, $address, $port);
答案 0 :(得分:0)
CURL允许使用socks5:
curl_setopt($ch, CURLOPT_PROXY, 'YOUR_PROXY_SERVER_HERE');
curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);