diff options
Diffstat (limited to 'app/Console/Commands/TestTor.php')
-rw-r--r-- | app/Console/Commands/TestTor.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/app/Console/Commands/TestTor.php b/app/Console/Commands/TestTor.php index 87f0050..5c4c296 100644 --- a/app/Console/Commands/TestTor.php +++ b/app/Console/Commands/TestTor.php @@ -7,43 +7,20 @@ 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); |