From 8d6e8b306d7836e4075a13ad98617bfe5afaa1a0 Mon Sep 17 00:00:00 2001 From: Fbenas Date: Sat, 20 Jun 2020 21:07:45 +0100 Subject: Add new scripts for youtube downloading and syncing with existing matches --- app/Console/Commands/TestTor.php | 65 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 app/Console/Commands/TestTor.php (limited to 'app/Console/Commands/TestTor.php') diff --git a/app/Console/Commands/TestTor.php b/app/Console/Commands/TestTor.php new file mode 100644 index 0000000..87f0050 --- /dev/null +++ b/app/Console/Commands/TestTor.php @@ -0,0 +1,65 @@ +argument('onion'); + + $response = Http::get($url); + dd($response->body()); + + // $url = 'http://jhiwjjlqpyawmpjx.onion/'; // Note the addition of a semicolon. + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_PROXY, "127.0.0.1:9150"); // Note the address here is just `IP:port`, not an HTTP URL. + curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5_HOSTNAME); // Note use of `CURLPROXY_SOCKS5_HOSTNAME`. + $this->info("about to run"); + $output = curl_exec($ch); + $this->info("run"); + + $curl_error = curl_error($ch); + curl_close($ch); + + print_r($output); + print_r($curl_error); + + return Command::SUCCESS; + } + +} -- cgit v1.2.3