14 lines
393 B
PHP
Executable File
14 lines
393 B
PHP
Executable File
<?php
|
|
error_reporting(E_ALL);
|
|
ini_set('display_errors', '1');
|
|
|
|
require_once __DIR__ . '/vendor/autoload.php';
|
|
require_once __DIR__ . '/src/Facade/PluginNotifierFacade.php';
|
|
echo "Included successfully\n";
|
|
|
|
if (!defined('INCLUDED_AS_LIBRARY')) {
|
|
define('INCLUDED_AS_LIBRARY', true);
|
|
}
|
|
require_once __DIR__ . '/scripts-uisp/audit_client_passwords.php';
|
|
echo "Audit included successfully\n";
|