!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)

E:\xampp\xampp\htdocs\jaime\Xcode\DevelopmentTechnique\   drwxrwxrwx
Free 7.96 GB of 239.26 GB (3.33%)
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:     7.php (997 B)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @package MyFirstDocumentedPackage
 */
/**
 * Randomizer Class
 *
 * Given an array this class allows you fetch random
 * elements from it.
 *
 * <code>
 * $randomizer = new Randomizer($array);
 * $randomElement = $randomizer->get();
 * </code>
 *
 * @author  Joe Bloggs <joe.bloggs@example.com>
 * @access  public
 * @package MyFirstDocumentedPackage
 */
class Randomizer {
    
/**
     * Stores the array to be randomized
     * @var array
     * @access private
     */
     
var $array = array();
    
/**
     * Constructs Randomizer
     * @param array the array to be randomized
     * @access public
     */
     
function Randomizer($array) {
        
$this->array $array;
        
srand ((float)microtime()*1000000);
     }
    
/**
     * Gets an element value from the array at random
     * @return mixed
     * @access public
     */
     
function get() {
        
shuffle($this->array);
        return 
$this->array[0];
     }
}
?>

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