Linux server64.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
Server IP : 198.54.116.248 & Your IP : 216.73.216.104
Domains :
Cant Read [ /etc/named.conf ]
User : tailxcij
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
moodle38 /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2024-05-19 23:00
languages
[ DIR ]
drwxr-xr-x
2024-05-19 23:00
php53
[ DIR ]
drwxr-xr-x
2024-05-19 23:00
php56
[ DIR ]
drwxr-xr-x
2024-05-19 23:00
php71
[ DIR ]
drwxr-xr-x
2024-05-19 23:00
php81
[ DIR ]
drwxr-xr-x
2024-05-19 23:00
php82
[ DIR ]
drwxr-xr-x
2024-05-19 23:00
NOTES.txt
1.45
KB
-rw-r--r--
2022-03-16 10:40
add_admin.php
733
B
-rw-r--r--
2022-06-30 12:50
check_utf8.php
5.88
KB
-rw-r--r--
2022-03-16 10:40
clone.php
5.49
KB
-rw-r--r--
2024-05-02 11:51
config.php
745
B
-rw-r--r--
2021-12-23 11:54
edit.php
5.68
KB
-rw-r--r--
2024-05-02 11:51
edit.xml
433
B
-rw-r--r--
2021-12-23 11:54
fileindex.php
929
B
-rw-r--r--
2021-12-23 11:54
import.php
5.47
KB
-rw-r--r--
2024-05-02 11:51
info.xml
3.37
KB
-rw-r--r--
2024-05-02 10:25
install.js
924
B
-rw-r--r--
2021-12-23 11:54
install.php
19.66
KB
-rw-r--r--
2024-05-02 11:51
install.xml
2.57
KB
-rw-r--r--
2023-06-29 10:20
md5
5.49
KB
-rw-r--r--
2024-05-02 11:51
privatekey.php
786
B
-rw-r--r--
2021-12-23 11:54
update_pass.php
3.17
KB
-rw-r--r--
2021-12-23 11:54
upgrade.php
7.97
KB
-rw-r--r--
2024-05-02 11:51
upgrade.xml
307
B
-rw-r--r--
2021-12-23 11:54
Save
Rename
<?php // We do not need this file any more @unlink('privatekey.php'); $ltikey = __mod_lti_verify_private_key(); echo '<kid>'.$ltikey['kid'].'</kid>'; echo '<privatekey>'.$ltikey['privatekey'].'</privatekey>'; function __mod_lti_verify_private_key() { global $error; if (!function_exists('openssl_random_pseudo_bytes')) { $error[] = "openssl must be loaded for openssl_random_pseudo_bytes to function"; return null; } // Create the private key. $kid = bin2hex(openssl_random_pseudo_bytes(10)); $config = array( "digest_alg" => "sha256", "private_key_bits" => 2048, "private_key_type" => OPENSSL_KEYTYPE_RSA, ); $res = openssl_pkey_new($config); openssl_pkey_export($res, $privatekey); return array( 'kid' => $kid, 'privatekey' => $privatekey, ); } ?>