Linux ams-business-5.hostwindsdns.com 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
LiteSpeed
Server IP : 23.254.231.17 & Your IP : 216.73.217.113
Domains :
Cant Read [ /etc/named.conf ]
User : uxvsuhne
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
nextcloud /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-09-18 04:38
php53
[ DIR ]
drwxr-xr-x
2026-09-18 04:38
php56
[ DIR ]
drwxr-xr-x
2026-09-18 04:38
php71
[ DIR ]
drwxr-xr-x
2026-09-18 04:38
php81
[ DIR ]
drwxr-xr-x
2026-09-18 04:38
php82
[ DIR ]
drwxr-xr-x
2026-09-18 04:38
.htaccess
6.67
KB
-rw-r--r--
2026-07-30 13:08
_.htaccess
534
B
-rw-r--r--
2021-12-23 14:54
changelog.txt
186.97
KB
-rw-r--r--
2026-09-17 14:22
check_suphp.php
101
B
-rw-r--r--
2021-12-23 14:54
clone.php
5.69
KB
-rw-r--r--
2026-09-17 15:09
config.php
1.04
KB
-rw-r--r--
2026-09-17 14:22
edit.php
5.8
KB
-rw-r--r--
2026-09-17 15:09
edit.xml
433
B
-rw-r--r--
2021-12-23 14:54
extend.php
6.9
KB
-rw-r--r--
2026-09-17 15:09
fileindex.php
293
B
-rw-r--r--
2025-09-18 13:02
import.php
3.54
KB
-rw-r--r--
2026-09-17 15:09
info.xml
4.67
KB
-rw-r--r--
2026-09-17 14:22
install.js
924
B
-rw-r--r--
2021-12-23 14:54
install.php
16.72
KB
-rw-r--r--
2026-09-17 15:09
install.xml
1.59
KB
-rw-r--r--
2021-12-23 14:54
md5
1.98
KB
-rw-r--r--
2026-09-17 15:09
notes.txt
2.72
KB
-rw-r--r--
2026-07-30 13:08
update_pass.php
1.02
KB
-rw-r--r--
2024-08-16 14:09
upgrade.php
5.44
KB
-rw-r--r--
2026-09-17 15:09
upgrade.xml
299
B
-rw-r--r--
2021-12-23 14:54
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 */ if(!defined('PASSWORD_BCRYPT')){ define(PASSWORD_BCRYPT, 1); } $default = PASSWORD_BCRYPT; if(defined('PASSWORD_ARGON2I')){ $default = PASSWORD_ARGON2I; } $resp = password_hash('[[admin_pass]]', $default); echo '<update_pass>'.$resp.'</update_pass>'; for($i = 1 ; $i <=10 ; $i++){ $sync_token[$i] = __generateSyncToken(); } $values = json_encode($sync_token); echo '<sync_tokens>'.$values.'</sync_tokens>'; function __generateSyncToken(){ global $error; $chars = 'qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890'; $str = ''; $max = strlen($chars); for ($i = 0; $i < 7; $i++) { try { $str .= $chars[random_int(0, $max - 2)]; } catch (Exception $e) { $error[] = 'exception during generateSyncToken'; } } return $str; } @unlink('update_pass.php'); ?>