summaryrefslogtreecommitdiff
path: root/app/Console/Commands/TestTor.php
blob: 87f005031af019df6b9a638886c6bf35398c38cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use Illuminate\Support\Facades\Http;

class TestTor extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'test:tor { onion }';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Testing tor';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        $url = $this->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;
    }

}