Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
shopware /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-03-23 19:22
php53
[ DIR ]
drwxr-xr-x
2026-03-23 19:22
php56
[ DIR ]
drwxr-xr-x
2026-03-23 19:22
php71
[ DIR ]
drwxr-xr-x
2026-03-23 19:22
php81
[ DIR ]
drwxr-xr-x
2026-03-23 19:22
php82
[ DIR ]
drwxr-xr-x
2026-03-23 19:22
.env.local
312
B
-rwxr-xr-x
2023-05-09 07:30
.htaccess
581
B
-rwxr-xr-x
2026-03-05 01:24
.uniqueid.txt
12
B
-rwxr-xr-x
2021-12-23 05:54
_clone.php
10.76
KB
-rwxr-xr-x
2023-05-09 07:30
_upgrade.php
4.26
KB
-rwxr-xr-x
2021-12-23 05:54
_upgrade.xml
327
B
-rwxr-xr-x
2021-12-23 05:54
backup.php
2.13
KB
-rwxr-xr-x
2026-03-23 07:32
edit.php
5.15
KB
-rwxr-xr-x
2026-03-23 07:32
edit.xml
433
B
-rwxr-xr-x
2021-12-23 05:54
extend.php
9.21
KB
-rwxr-xr-x
2026-03-23 07:32
fileindex.php
194
B
-rwxr-xr-x
2025-02-24 05:40
import.php
4.82
KB
-rwxr-xr-x
2026-03-23 07:32
info.xml
4.02
KB
-rwxr-xr-x
2026-03-23 03:14
install.js
924
B
-rwxr-xr-x
2021-12-23 05:54
install.lock
13
B
-rwxr-xr-x
2021-12-23 05:54
install.php
9.58
KB
-rwxr-xr-x
2026-03-23 07:32
install.xml
952
B
-rwxr-xr-x
2021-12-23 05:54
md5
3.81
KB
-rwxr-xr-x
2026-03-23 07:32
notes.txt
2.71
KB
-rwxr-xr-x
2025-07-29 03:37
update_appkey.php
825
B
-rwxr-xr-x
2021-12-23 05:54
update_pass.php
541
B
-rwxr-xr-x
2021-12-23 05:54
Save
Rename
<?php @unlink('update_appkey.php'); //Required to autoload the namespaces require_once 'vendor/autoload.php'; //Generate APP_KEY and store it in .env file $key = \Defuse\Crypto\Key::createNewRandomKey(); $appsecret = $key->saveToAsciiSafeString(); echo '<appsecret>'.$appsecret.'</appsecret>'; //Generate private/public keypair using openssl functions $key = openssl_pkey_new([ 'digest_alg' => 'aes256', 'private_key_type' => \OPENSSL_KEYTYPE_RSA, 'encrypt_key' => false, 'encrypt_key_cipher' => \OPENSSL_CIPHER_AES_256_CBC, ]); // export private key openssl_pkey_export($key, $priv_key); // export public key $keyData = openssl_pkey_get_details($key); $public_key = $keyData['key']; $private_key = $priv_key; echo '<publickey>'.$public_key.'</publickey>'; echo '<privatekey>'.$private_key.'</privatekey>'; ?>