Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 18.188.195.90
202 Domain
8.1.31
nbspublicschool
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 /
moodle30 /
[ 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
2.22
KB
-rw-r--r--
add_admin.php
733
B
-rw-r--r--
check_utf8.php
6.99
KB
-rw-r--r--
clone.php
5.47
KB
-rw-r--r--
config.php
745
B
-rw-r--r--
edit.php
4.62
KB
-rw-r--r--
edit.xml
433
B
-rw-r--r--
extend.php
12.45
KB
-rw-r--r--
fileindex.php
1002
B
-rw-r--r--
get_plugin_list.php
572
B
-rw-r--r--
import.php
7.29
KB
-rw-r--r--
info.xml
3.85
KB
-rw-r--r--
install.js
924
B
-rw-r--r--
install.php
11.06
KB
-rw-r--r--
install.xml
3.36
KB
-rw-r--r--
md5
3.48
KB
-rw-r--r--
privatekey.php
975
B
-rw-r--r--
update_pass.php
541
B
-rw-r--r--
upgrade.php
8.53
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