Linux cambridge2.uknoc5.com 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64
LiteSpeed
Server IP : 92.48.92.37 & Your IP : 3.134.245.35
Domains :
Cant Read [ /etc/named.conf ]
User : drazizulhaq
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
mt /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2024-12-18 19:59
php53
[ DIR ]
drwxr-xr-x
2024-12-18 19:59
php56
[ DIR ]
drwxr-xr-x
2024-12-18 19:59
php71
[ DIR ]
drwxr-xr-x
2024-12-18 19:59
php81
[ DIR ]
drwxr-xr-x
2024-12-18 19:59
php82
[ DIR ]
drwxr-xr-x
2024-12-18 19:59
.htaccess
83
B
-rwxr-xr-x
2021-12-23 06:54
atom.xml
445
B
-rwxr-xr-x
2021-12-23 06:54
fileindex.php
344
B
-rwxr-xr-x
2021-12-23 06:54
home.html
7.6
KB
-rwxr-xr-x
2021-12-23 06:54
import.php
2.77
KB
-rwxr-xr-x
2024-05-09 09:25
index.html
3.26
KB
-rwxr-xr-x
2021-12-23 06:54
info.xml
3.4
KB
-rwxr-xr-x
2024-05-09 09:19
install.js
924
B
-rwxr-xr-x
2021-12-23 06:54
install.php
10.17
KB
-rwxr-xr-x
2024-05-09 09:25
install.xml
1.42
KB
-rwxr-xr-x
2021-12-23 06:54
md5
1.59
KB
-rwxr-xr-x
2024-05-09 09:25
mt-config.cgi
728
B
-rwxr-xr-x
2021-12-23 06:54
mt-ftsearch.cgi
325
B
-rwxr-xr-x
2021-12-23 06:54
mt-search.cgi
315
B
-rwxr-xr-x
2021-12-23 06:54
mt-upgrade.cgi
317
B
-rwxr-xr-x
2021-12-23 06:54
mt-xmlrpc.cgi
1
KB
-rwxr-xr-x
2021-12-23 06:54
mt.cgi
312
B
-rwxr-xr-x
2021-12-23 06:54
mt.js
34.79
KB
-rwxr-xr-x
2021-12-23 06:54
notes.txt
733
B
-rwxr-xr-x
2021-12-23 06:54
rsd.xml
639
B
-rwxr-xr-x
2021-12-23 06:54
styles.css
124
B
-rwxr-xr-x
2021-12-23 06:54
upgrade.php
6.5
KB
-rwxr-xr-x
2024-05-09 09:25
upgrade.xml
681
B
-rwxr-xr-x
2021-12-23 06:54
wwwindex.php
10
B
-rwxr-xr-x
2021-12-23 06:54
Save
Rename
#!/usr/bin/perl -w # Movable Type (r) Open Source (C) 2001-2013 Six Apart, Ltd. # This program is distributed under the terms of the # GNU General Public License, version 2. # # $Id$ [[perl_module_path]] use strict; my $MT_DIR; sub BEGIN { require File::Spec; if ( !( $MT_DIR = $ENV{MT_HOME} ) ) { if ( $0 =~ m!(.*[/\\])! ) { $MT_DIR = $1; } else { $MT_DIR = './'; } $ENV{MT_HOME} = $MT_DIR; } unshift @INC, File::Spec->catdir( $MT_DIR, 'lib' ); unshift @INC, File::Spec->catdir( $MT_DIR, 'extlib' ); } use XMLRPC::Transport::HTTP; use MT::XMLRPCServer; $MT::XMLRPCServer::MT_DIR = $MT_DIR; use vars qw($server); { ## Shut off warnings, because SOAP::Lite 0.55 causes some ## unitialized value warnings that seem to be connected to ## the soap->action local $SIG{__WARN__} = sub { }; $server = XMLRPC::Transport::HTTP::CGI->new; $server->dispatch_to( 'blogger', 'metaWeblog', 'mt', 'wp' ); $server->handle; }