タグ付けされた質問 「tor」

4
PHPでcURLを使用してTor非表示サービスに接続するにはどうすればよいですか?
ロックされています。この質問へのコメントは無効になっていますが、新しい回答やその他のやり取りはまだ受け付けています。詳細をご覧ください。 次のPHPコードを使用してTor非表示サービスに接続しようとしています。 $url = 'http://jhiwjjlqpyawmpjx.onion/' $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_PROXY, "http://127.0.0.1:9050/"); curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5); $output = curl_exec($ch); $curl_error = curl_error($ch); curl_close($ch); print_r($output); print_r($curl_error); 実行すると、次のエラーが発生します。 ホスト名を解決できませんでした ただし、Ubuntuのコマンドラインから次のコマンドを実行すると、 curl -v --socks5-hostname localhost:9050 http://jhiwjjlqpyawmpjx.onion 期待通りに返事がある PHP cURLドキュメントはこれを言います: --socks5-hostname Use the specified SOCKS5 proxy (and let the proxy …
366 php  curl  proxy  tor 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.