Linux cambridge2.uknoc5.com 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64
LiteSpeed
Server IP : 92.48.92.37 & Your IP : 52.14.187.31
Domains :
Cant Read [ /etc/named.conf ]
User : drazizulhaq
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
moodle29 /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2024-12-18 19:58
languages
[ DIR ]
drwxr-xr-x
2024-12-18 19:58
php53
[ DIR ]
drwxr-xr-x
2024-12-18 19:58
php56
[ DIR ]
drwxr-xr-x
2024-12-18 19:58
php71
[ DIR ]
drwxr-xr-x
2024-12-18 19:58
php81
[ DIR ]
drwxr-xr-x
2024-12-18 19:58
php82
[ DIR ]
drwxr-xr-x
2024-12-18 19:58
NOTES.txt
1.7
KB
-rwxr-xr-x
2024-10-30 08:35
add_admin.php
733
B
-rwxr-xr-x
2022-06-30 07:50
check_utf8.php
5.88
KB
-rwxr-xr-x
2022-03-16 06:40
clone.php
5.48
KB
-rwxr-xr-x
2024-10-30 08:39
config.php
745
B
-rwxr-xr-x
2021-12-23 06:54
edit.php
5.66
KB
-rwxr-xr-x
2024-10-30 08:39
edit.xml
433
B
-rwxr-xr-x
2021-12-23 06:54
fileindex.php
896
B
-rwxr-xr-x
2024-10-30 08:35
import.php
5.32
KB
-rwxr-xr-x
2024-10-30 08:39
info.xml
3.37
KB
-rwxr-xr-x
2024-10-30 08:35
install.js
924
B
-rwxr-xr-x
2021-12-23 06:54
install.php
19.61
KB
-rwxr-xr-x
2024-10-30 08:39
install.xml
2.53
KB
-rwxr-xr-x
2023-06-29 05:20
md5
2.72
KB
-rwxr-xr-x
2024-10-30 08:39
privatekey.php
786
B
-rwxr-xr-x
2021-12-23 06:54
update_pass.php
3.17
KB
-rwxr-xr-x
2021-12-23 06:54
upgrade.php
7.71
KB
-rwxr-xr-x
2024-10-30 08:39
upgrade.xml
307
B
-rwxr-xr-x
2021-12-23 06: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, ); } ?>