!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

C:\Intranet\C\xampp\php\PEAR\Crypt\   drwxrwxrwx
Free 4.09 GB of 39.52 GB (10.36%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Rc4.php (4.14 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4: */
// +----------------------------------------------------------------------+
// | PHP Version 4                                                        |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2003 The PHP Group                                |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the PHP license,       |
// | that is bundled with this package in the file LICENSE, and is        |
// | available at through the world-wide-web at                           |
// | http://www.php.net/license/2_02.txt.                                 |
// | If you did not receive a copy of the PHP license and are unable to   |
// | obtain it through the world-wide-web, please send a note to          |
// | license@php.net so we can mail you a copy immediately.               |
// +----------------------------------------------------------------------+
// | Authors: Dave Mertens <dmertens@zyprexia.com>                        |
// +----------------------------------------------------------------------+
//
// $Id: Rc4.php,v 1.6 2003/10/04 16:39:32 zyprexia Exp $


/**
* RC4 stream cipher routines implementation
*
* in PHP4 based on code written by Damien Miller <djm@mindrot.org>
*
* Usage:
* $key = "pear";
* $message = "PEAR rulez!";
*
* $rc4 = new Crypt_RC4;
* $rc4->key($key);
* echo "Original message: $message <br>\n";
* $rc4->crypt($message);
* echo "Encrypted message: $message <br>\n";
* $rc4->decrypt($message);
* echo "Decrypted message: $message <br>\n";
*
* @version $Revision: 1.6 $
* @access public
* @package Crypt
* @author Dave Mertens <dmertens@zyprexia.com>
 */
class Crypt_RC4 {

    
/**
    * Real programmers...
    * @var array
    */
    
var $s= array();
    
/**
    * Real programmers...
    * @var array
    */
    
var $i0;
    
/**
    * Real programmers...
    * @var array
    */
    
var $j0;

    
/**
    * Key holder
    * @var string
    */
    
var $_key;

    
/**
    * Constructor
    * Pass encryption key to key()
    *
    * @see    key() 
    * @param  string key    - Key which will be used for encryption
    * @return void
    * @access public
    */
    
function Crypt_RC4($key null) {
        if (
$key != null) {
            
$this->setKey($key);
        }
    }

    function 
setKey($key) {
        if (
strlen($key) > 0)
            
$this->_key $key;
    }

    
/**
    * Assign encryption key to class
    *
    * @param  string key    - Key which will be used for encryption
    * @return void
    * @access public    
    */
    
function key(&$key) {
        
$lenstrlen($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;
    }

    
/**
    * Encrypt function
    *
    * @param  string paramstr     - string that will encrypted
    * @return void
    * @access public    
    */
    
function crypt(&$paramstr) {

        
//Init key for every call, Bugfix 22316
        
$this->key($this->_key);

        
$lenstrlen($paramstr);
        for (
$c0$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;

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

    
/**
    * Decrypt function
    *
    * @param  string paramstr     - string that will decrypted
    * @return void
    * @access public    
    */
    
function decrypt(&$paramstr) {
        
//Decrypt is exactly the same as encrypting the string. Reuse (en)crypt code
        
$this->crypt($paramstr);
    }


}    
//end of RC4 class
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0312 ]--