Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.64
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
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-06-23 23:21
php53
[ DIR ]
drwxr-xr-x
2026-06-23 23:21
php56
[ DIR ]
drwxr-xr-x
2026-06-23 23:21
php71
[ DIR ]
drwxr-xr-x
2026-06-23 23:21
php81
[ DIR ]
drwxr-xr-x
2026-06-23 23:21
php82
[ DIR ]
drwxr-xr-x
2026-06-23 23:21
_clone.php
2.94
KB
-rw-r--r--
2025-07-30 00:26
_edit.php
3.47
KB
-rw-r--r--
2025-04-14 03:13
_edit.xml
447
B
-rw-r--r--
2025-04-14 03:13
extend.php
8.3
KB
-rw-r--r--
2026-06-23 02:00
fileindex.php
95
B
-rw-r--r--
2024-07-10 02:32
gen_totp_key.php
1.21
KB
-rw-r--r--
2025-07-30 00:26
import.php
3.02
KB
-rw-r--r--
2026-06-23 02:00
info.xml
2.4
KB
-rw-r--r--
2026-06-22 23:55
init.php
3.11
KB
-rw-r--r--
2026-04-21 23:52
install.js
921
B
-rw-r--r--
2021-12-23 01:24
install.php
5.62
KB
-rw-r--r--
2026-06-23 02:00
install.xml
1.98
KB
-rw-r--r--
2026-06-15 20:20
md5
2.44
KB
-rw-r--r--
2026-06-23 02:00
notes.txt
1.13
KB
-rw-r--r--
2025-07-30 00:26
totp_key.php
1.47
KB
-rw-r--r--
2025-07-30 00:26
totp_requirements.php
2.33
KB
-rw-r--r--
2025-08-25 01:42
update_pass.php
517
B
-rw-r--r--
2025-04-14 03:13
user_manager_columns.php
6
KB
-rw-r--r--
2026-02-02 01:50
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'); ?>