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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/jiff/vendor/tymon/jwt-auth/src/   drwxr-xr-x
Free 12.94 GB of 57.97 GB (22.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Payload.php (6.3 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
 * This file is part of jwt-auth.
 *
 * (c) Sean Tymon <tymon148@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Tymon\JWTAuth;

use 
ArrayAccess;
use 
BadMethodCallException;
use 
Countable;
use 
Illuminate\Contracts\Support\Arrayable;
use 
Illuminate\Contracts\Support\Jsonable;
use 
Illuminate\Support\Arr;
use 
Illuminate\Support\Str;
use 
JsonSerializable;
use 
Tymon\JWTAuth\Claims\Claim;
use 
Tymon\JWTAuth\Claims\Collection;
use 
Tymon\JWTAuth\Exceptions\PayloadException;
use 
Tymon\JWTAuth\Validators\PayloadValidator;

class 
Payload implements ArrayAccessArrayableCountableJsonableJsonSerializable
{
    
/**
     * The collection of claims.
     *
     * @var \Tymon\JWTAuth\Claims\Collection
     */
    
private $claims;

    
/**
     * Build the Payload.
     *
     * @param  \Tymon\JWTAuth\Claims\Collection  $claims
     * @param  \Tymon\JWTAuth\Validators\PayloadValidator  $validator
     * @param  bool  $refreshFlow
     * @return void
     */
    
public function __construct(Collection $claimsPayloadValidator $validator$refreshFlow false)
    {
        
$this->claims $validator->setRefreshFlow($refreshFlow)->check($claims);
    }

    
/**
     * Get the array of claim instances.
     *
     * @return \Tymon\JWTAuth\Claims\Collection
     */
    
public function getClaims()
    {
        return 
$this->claims;
    }

    
/**
     * Checks if a payload matches some expected values.
     *
     * @param  array  $values
     * @param  bool  $strict
     * @return bool
     */
    
public function matches(array $values$strict false)
    {
        if (empty(
$values)) {
            return 
false;
        }

        
$claims $this->getClaims();

        foreach (
$values as $key => $value) {
            if (! 
$claims->has($key) || ! $claims->get($key)->matches($value$strict)) {
                return 
false;
            }
        }

        return 
true;
    }

    
/**
     * Checks if a payload strictly matches some expected values.
     *
     * @param  array  $values
     * @return bool
     */
    
public function matchesStrict(array $values)
    {
        return 
$this->matches($valuestrue);
    }

    
/**
     * Get the payload.
     *
     * @param  mixed  $claim
     * @return mixed
     */
    
public function get($claim null)
    {
        
$claim value($claim);

        if (
$claim !== null) {
            if (
is_array($claim)) {
                return 
array_map([$this'get'], $claim);
            }

            return 
Arr::get($this->toArray(), $claim);
        }

        return 
$this->toArray();
    }

    
/**
     * Get the underlying Claim instance.
     *
     * @param  string  $claim
     * @return \Tymon\JWTAuth\Claims\Claim
     */
    
public function getInternal($claim)
    {
        return 
$this->claims->getByClaimName($claim);
    }

    
/**
     * Determine whether the payload has the claim (by instance).
     *
     * @param  \Tymon\JWTAuth\Claims\Claim  $claim
     * @return bool
     */
    
public function has(Claim $claim)
    {
        return 
$this->claims->has($claim->getName());
    }

    
/**
     * Determine whether the payload has the claim (by key).
     *
     * @param  string  $claim
     * @return bool
     */
    
public function hasKey($claim)
    {
        return 
$this->offsetExists($claim);
    }

    
/**
     * Get the array of claims.
     *
     * @return array
     */
    
public function toArray()
    {
        return 
$this->claims->toPlainArray();
    }

    
/**
     * Convert the object into something JSON serializable.
     *
     * @return array
     */
    
#[\ReturnTypeWillChange]
    public function 
jsonSerialize()
    {
        return 
$this->toArray();
    }

    
/**
     * Get the payload as JSON.
     *
     * @param  int  $options
     * @return string
     */
    
public function toJson($options JSON_UNESCAPED_SLASHES)
    {
        return 
json_encode($this->toArray(), $options);
    }

    
/**
     * Get the payload as a string.
     *
     * @return string
     */
    
public function __toString()
    {
        return 
$this->toJson();
    }

    
/**
     * Determine if an item exists at an offset.
     *
     * @param  mixed  $key
     * @return bool
     */
    
#[\ReturnTypeWillChange]
    public function 
offsetExists($key)
    {
        return 
Arr::has($this->toArray(), $key);
    }

    
/**
     * Get an item at a given offset.
     *
     * @param  mixed  $key
     * @return mixed
     */
    
#[\ReturnTypeWillChange]
    public function 
offsetGet($key)
    {
        return 
Arr::get($this->toArray(), $key);
    }

    
/**
     * Don't allow changing the payload as it should be immutable.
     *
     * @param  mixed  $key
     * @param  mixed  $value
     *
     * @throws \Tymon\JWTAuth\Exceptions\PayloadException
     */
    
#[\ReturnTypeWillChange]
    public function 
offsetSet($key$value)
    {
        throw new 
PayloadException('The payload is immutable');
    }

    
/**
     * Don't allow changing the payload as it should be immutable.
     *
     * @param  string  $key
     * @return void
     *
     * @throws \Tymon\JWTAuth\Exceptions\PayloadException
     */
    
#[\ReturnTypeWillChange]
    public function 
offsetUnset($key)
    {
        throw new 
PayloadException('The payload is immutable');
    }

    
/**
     * Count the number of claims.
     *
     * @return int
     */
    
#[\ReturnTypeWillChange]
    public function 
count()
    {
        return 
count($this->toArray());
    }

    
/**
     * Invoke the Payload as a callable function.
     *
     * @param  mixed  $claim
     * @return mixed
     */
    
public function __invoke($claim null)
    {
        return 
$this->get($claim);
    }

    
/**
     * Magically get a claim value.
     *
     * @param  string  $method
     * @param  array  $parameters
     * @return mixed
     *
     * @throws \BadMethodCallException
     */
    
public function __call($method$parameters)
    {
        if (
preg_match('/get(.+)\b/i'$method$matches)) {
            foreach (
$this->claims as $claim) {
                if (
get_class($claim) === 'Tymon\\JWTAuth\\Claims\\'.$matches[1]) {
                    return 
$claim->getValue();
                }
            }
        }

        throw new 
BadMethodCallException(sprintf('The claim [%s] does not exist on the payload.'Str::after($method'get')));
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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