Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.140.192.22
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
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
2025-04-18 14:15
php53
[ DIR ]
drwxr-xr-x
2025-04-18 14:15
php56
[ DIR ]
drwxr-xr-x
2025-04-18 14:15
php71
[ DIR ]
drwxr-xr-x
2025-04-18 14:15
php81
[ DIR ]
drwxr-xr-x
2025-04-18 14:15
php82
[ DIR ]
drwxr-xr-x
2025-04-18 14:15
.htaccess
4.61
KB
-rw-r--r--
2025-02-27 08:42
_.htaccess
534
B
-rw-r--r--
2021-12-23 11:54
changelog.txt
8.96
KB
-rw-r--r--
2025-04-18 13:03
check_suphp.php
101
B
-rw-r--r--
2021-12-23 11:54
clone.php
5.73
KB
-rw-r--r--
2025-04-18 13:25
config.php
541
B
-rw-r--r--
2025-04-18 13:03
data.zip
32.28
MB
-rw-r--r--
2025-04-18 13:03
edit.php
5.79
KB
-rw-r--r--
2025-04-18 13:25
edit.xml
433
B
-rw-r--r--
2021-12-23 11:54
extend.php
6.93
KB
-rw-r--r--
2025-04-18 13:25
fileindex.php
289
B
-rw-r--r--
2024-09-18 09:18
import.php
3.56
KB
-rw-r--r--
2025-04-18 13:25
info.xml
4.67
KB
-rw-r--r--
2025-04-18 13:03
install.js
924
B
-rw-r--r--
2021-12-23 11:54
install.php
16
KB
-rw-r--r--
2025-04-18 13:25
install.xml
1.59
KB
-rw-r--r--
2021-12-23 11:54
md5
1.69
KB
-rw-r--r--
2025-04-18 13:25
nextcloud.sql
132.01
KB
-rw-r--r--
2025-04-18 13:03
nextcloud.zip
245.65
MB
-rw-r--r--
2025-04-18 13:03
notes.txt
2.21
KB
-rw-r--r--
2024-10-21 09:51
update_pass.php
1.02
KB
-rw-r--r--
2024-08-16 11:09
upgrade.php
5.04
KB
-rw-r--r--
2025-04-18 13:25
upgrade.xml
299
B
-rw-r--r--
2021-12-23 11: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'); ?>