PHP Classes

File: recon

Recommend this page to a friend!
  Classes of Dawood Ikhlaq   ReconCat   recon   Download  
File: recon
Role: Application script
Content type: text/plain
Description: Command line application script
Class: ReconCat
Retrieve past versions pages from Web Archive
Author: By
Last change:
Date: 1 year ago
Size: 861 bytes
 

Contents

Class file image Download
<?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();