-
Notifications
You must be signed in to change notification settings - Fork 16
/
recon
36 lines (25 loc) · 861 Bytes
/
recon
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
<?php
/**
* Created by PhpStorm.
* User: daudm
* Date: 2/25/2018
* Time: 4:38 PM
*/
require __DIR__.'/vendor/autoload.php';
use dawood\ReconCat\Commands\ReconCat;
use Symfony\Component\Console\Application;
$logo = "<fg=red;options=bold>
____ ______ __
/ __ \ ___ _____ ____ ____ / ____/____ _ / /_
/ /_/ // _ \ / ___// __ \ / __ \ / / / __ `// __/
/ _, _// __// /__ / /_/ // / / // /___ / /_/ // /_
/_/ |_| \___/ \___/ \____//_/ /_/ \____/ \__,_/ \__/
</><info>############### <fg=red;options=bold>Made By Dawood Ikhlaq</> ###############</info>
";
$output = new Symfony\Component\Console\Output\ConsoleOutput();
$output->writeln($logo);
$application = new Application();
$scrapper = new ReconCat;
$application->add($scrapper);
$application->setDefaultCommand('recon');
$application->run();