summaryrefslogtreecommitdiff
path: root/app/Console/Commands/TestTor.php
blob: 5c4c2969c0fb54d18648c38f220eed895be00e88 (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
<?php

namespace App\Console\Commands;

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

class TestTor extends Command
{
    protected $signature = 'test:tor { onion }';
    protected $description = 'Testing tor';

    public function __construct()
    {
        parent::__construct();
    }

    public function handle()
    {
        $url = $this->argument('onion');

        $response = Http::get($url);

        $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;
    }

}