Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
userspice /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-04-24 05:46
php53
[ DIR ]
drwxr-xr-x
2026-04-24 05:46
php56
[ DIR ]
drwxr-xr-x
2026-04-24 05:46
php71
[ DIR ]
drwxr-xr-x
2026-04-24 05:46
php81
[ DIR ]
drwxr-xr-x
2026-04-24 05:46
php82
[ DIR ]
drwxr-xr-x
2026-04-24 05:46
_clone.php
2.94
KB
-rw-r--r--
2025-07-30 10:56
_edit.php
3.47
KB
-rw-r--r--
2025-04-14 13:43
_edit.xml
447
B
-rw-r--r--
2025-04-14 13:43
extend.php
8.3
KB
-rw-r--r--
2026-04-22 13:28
fileindex.php
95
B
-rw-r--r--
2024-07-10 13:02
gen_totp_key.php
1.21
KB
-rw-r--r--
2025-07-30 10:56
import.php
3.03
KB
-rw-r--r--
2026-04-22 13:28
info.xml
2.4
KB
-rw-r--r--
2026-04-22 10:22
init.php
3.11
KB
-rw-r--r--
2026-04-22 10:22
install.js
921
B
-rw-r--r--
2021-12-23 12:54
install.php
5.82
KB
-rw-r--r--
2026-04-22 13:28
install.xml
1.94
KB
-rw-r--r--
2026-04-22 10:22
md5
5.42
KB
-rw-r--r--
2026-04-22 13:28
notes.txt
1.13
KB
-rw-r--r--
2025-07-30 10:56
totp_key.php
1.47
KB
-rw-r--r--
2025-07-30 10:56
totp_requirements.php
2.33
KB
-rw-r--r--
2025-08-25 12:12
update_pass.php
517
B
-rw-r--r--
2025-04-14 13:43
user_manager_columns.php
6
KB
-rw-r--r--
2026-02-02 13:20
Save
Rename
<?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'); ?>