You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
350 B
24 lines
350 B
<?php
|
|
|
|
require('DriverException.php');
|
|
require('Driver.php');
|
|
|
|
try {
|
|
$driver = new Driver;
|
|
|
|
$options = getopt("abc");
|
|
var_dump($argv);
|
|
exit;
|
|
|
|
$detectedApps = $driver->analyze('http://wappalyzer.com');
|
|
|
|
echo implode("\n", $detectedApps) . "\n";
|
|
|
|
exit(1);
|
|
} catch ( DriverException $e ) {
|
|
exit('x');
|
|
echo $e->getMessage() . "\n";
|
|
|
|
exit(0);
|
|
}
|