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.58
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
espo /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2025-10-29 04:26
php53
[ DIR ]
drwxr-xr-x
2025-10-29 04:26
php56
[ DIR ]
drwxr-xr-x
2025-10-29 04:26
php71
[ DIR ]
drwxr-xr-x
2025-10-29 04:26
php81
[ DIR ]
drwxr-xr-x
2025-10-29 04:26
php82
[ DIR ]
drwxr-xr-x
2025-10-29 04:26
_config.php
49
B
-rw-r--r--
2021-12-23 06:54
clone.php
5.79
KB
-rw-r--r--
2025-10-27 08:11
config-internal.php
1.07
KB
-rw-r--r--
2025-05-08 01:10
config.php
8.56
KB
-rw-r--r--
2025-10-27 03:15
edit.php
4.95
KB
-rw-r--r--
2025-10-27 08:11
edit.xml
433
B
-rw-r--r--
2025-05-22 09:12
espo.sql
158.41
KB
-rw-r--r--
2025-10-27 03:15
espo.zip
33.43
MB
-rw-r--r--
2025-10-27 03:15
extend.php
9.73
KB
-rw-r--r--
2025-10-27 08:11
fileindex.php
219
B
-rw-r--r--
2022-10-22 04:24
getuid.php
497
B
-rw-r--r--
2023-09-11 03:14
import.php
3.09
KB
-rw-r--r--
2025-10-27 08:11
info.xml
5.37
KB
-rw-r--r--
2025-10-27 03:15
install.js
924
B
-rw-r--r--
2021-12-23 06:54
install.php
9.5
KB
-rw-r--r--
2025-10-27 08:11
install.xml
2.02
KB
-rw-r--r--
2021-12-23 06:54
md5
2.58
KB
-rw-r--r--
2025-10-27 08:11
notes.txt
949
B
-rw-r--r--
2025-05-28 02:57
update_pass.php
1.04
KB
-rw-r--r--
2025-01-21 05:44
Save
Rename
<?php /** * A Compatibility library with PHP 5.5's simplified password hashing API. * * @author Anthony Ferrara <ircmaxell@php.net> * @license http://www.opensource.org/licenses/mit-license.html MIT License * @copyright 2012 The Authors */ @unlink('update_pass.php'); if(!defined('PASSWORD_BCRYPT')){ define('PASSWORD_BCRYPT', 1); } define('PASSWORD_DEFAULT', PASSWORD_BCRYPT); $resp = password_hash('[[admin_pass]]', PASSWORD_DEFAULT); echo '<update_pass>'.$resp.'</update_pass>'; /* Removed since 9.0.0 $pass = '[[admin_pass]]'; $resp = __hash($pass); echo '<update_pass>'.$resp.'</update_pass>'; function __hash($password, $useMd5 = true){ $salt = __getSalt(); if ($useMd5) { $password = md5($password); } $password = crypt($password, $salt); $password = str_replace($salt, '', $password); return $password; } function __getSalt(){ $salt = '[[passwordsalt]]'; $salt = __normalizeSalt($salt); return $salt; } function __normalizeSalt($salt){ return str_replace("{0}", $salt, '$6${0}$'); } */ ?>