!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/dokan/script/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/   drwxrwxrwx
Free 13.1 GB of 57.97 GB (22.6%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     RC4.php (1.44 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace PhpOffice\PhpSpreadsheet\Reader\Xls;

class 
RC4
{
    
// Context
    
protected $s = [];

    protected 
$i 0;

    protected 
$j 0;

    
/**
     * RC4 stream decryption/encryption constrcutor.
     *
     * @param string $key Encryption key/passphrase
     */
    
public function __construct($key)
    {
        
$len strlen($key);

        for (
$this->0$this->256; ++$this->i) {
            
$this->s[$this->i] = $this->i;
        }

        
$this->0;
        for (
$this->0$this->256; ++$this->i) {
            
$this->= ($this->$this->s[$this->i] + ord($key[$this->$len])) % 256;
            
$t $this->s[$this->i];
            
$this->s[$this->i] = $this->s[$this->j];
            
$this->s[$this->j] = $t;
        }
        
$this->$this->0;
    }

    
/**
     * Symmetric decryption/encryption function.
     *
     * @param string $data Data to encrypt/decrypt
     *
     * @return string
     */
    
public function RC4($data)
    {
        
$len strlen($data);
        for (
$c 0$c $len; ++$c) {
            
$this->= ($this->1) % 256;
            
$this->= ($this->$this->s[$this->i]) % 256;
            
$t $this->s[$this->i];
            
$this->s[$this->i] = $this->s[$this->j];
            
$this->s[$this->j] = $t;

            
$t = ($this->s[$this->i] + $this->s[$this->j]) % 256;

            
$data[$c] = chr(ord($data[$c]) ^ $this->s[$t]);
        }

        return 
$data;
    }
}

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