i have downloaded , installed advanced onion router (advor-0.3.0.20) on windows 7 successfully, have made connected also. after that, see ip address did not change, checked @ check.torproject.org both firefox , chrome return "not using tor".
did make wrong?
regards, tin
with helps nice guys, have found solution case. using php curl socks5 following:
$ch = curl_init(); curl_setopt($ch, curlopt_url, $url); curl_setopt($ch, curlopt_returntransfer, 1); curl_setopt($ch, curlopt_useragent, "mozilla/5.0 (windows nt 6.1; wow64; rv:32.0) gecko/20100101 firefox/32.0"); curl_setopt($ch, curlopt_header, false); if (!empty($cookie)) { curl_setopt($ch, curlopt_cookie, $cookie); } curl_setopt($ch, curlopt_ssl_verifyhost, 0); curl_setopt($ch, curlopt_ssl_verifypeer, 0); // using tor proxy curl_setopt($ch, curlopt_proxy, "127.0.0.1:9050"); curl_setopt($ch, curlopt_proxytype, curlproxy_socks5); curl_setopt($ch, curlopt_verbose, 0); $contents = curl_exec($ch); curl_close($ch); it's success, because when check $url = 'https://check.torproject.org', content of html has text: 'congratulations. browser configured use tor. '
cheers!!
Comments
Post a Comment