Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sms-core /
vendor /
lcobucci /
jwt /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Encoding
[ DIR ]
drwxrwxr-x
Signer
[ DIR ]
drwxrwxr-x
Token
[ DIR ]
drwxrwxr-x
Validation
[ DIR ]
drwxrwxr-x
Builder.php
1.98
KB
-rw-rw-r--
ClaimsFormatter.php
245
B
-rw-rw-r--
Configuration.php
3.75
KB
-rw-rw-r--
Decoder.php
604
B
-rw-rw-r--
Encoder.php
522
B
-rw-rw-r--
Exception.php
115
B
-rw-rw-r--
Parser.php
578
B
-rw-rw-r--
Signer.php
988
B
-rw-rw-r--
SodiumBase64Polyfill.php
2.54
KB
-rw-rw-r--
Token.php
1.25
KB
-rw-rw-r--
UnencryptedToken.php
441
B
-rw-rw-r--
Validator.php
513
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Token.php
<?php declare(strict_types=1); namespace Lcobucci\JWT; use DateTimeInterface; use Lcobucci\JWT\Token\DataSet; interface Token { /** * Returns the token headers */ public function headers(): DataSet; /** * Returns if the token is allowed to be used by the audience */ public function isPermittedFor(string $audience): bool; /** * Returns if the token has the given id */ public function isIdentifiedBy(string $id): bool; /** * Returns if the token has the given subject */ public function isRelatedTo(string $subject): bool; /** * Returns if the token was issued by any of given issuers */ public function hasBeenIssuedBy(string ...$issuers): bool; /** * Returns if the token was issued before of given time */ public function hasBeenIssuedBefore(DateTimeInterface $now): bool; /** * Returns if the token minimum time is before than given time */ public function isMinimumTimeBefore(DateTimeInterface $now): bool; /** * Returns if the token is expired */ public function isExpired(DateTimeInterface $now): bool; /** * Returns an encoded representation of the token */ public function toString(): string; }
Close