!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\Files\   drwxrwxrwx
Free 8.8 GB of 239.26 GB (3.68%)
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:     17.php (858 B)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Set time limit to infinite
set_time_limit(0);

// Define server and target directory
$ftpServer='ftp.uselinux.org';
$targetDir='/pub/redhat/updates/8.0/en/os/i386/';

// Connect to server
if ( !$fp ftp_connect($ftpServer,21,30) ) {
    die ( 
'Connection failed' );
}

// Login anonymously
if ( !ftp_login $fp'anonymous','you@yourdomain.com' ) ) {
    die ( 
'Login failed' );
}

// Change directory
if ( !ftp_chdir ($fp,$targetDir) ) {
    die ( 
'Unable to change directory to: '.$targetDir );
}


// Display the remote directory location
echo ( '<b>Current Directory:</b> <code>'.ftp_pwd($fp).'<code><br />' );

echo ( 
'<b>Files Available:</b><br />' );

// Get a list of files on the server
$files ftp_nlist($fp,'./');

// Display the files
foreach ( $files as $file ) {
    echo ( 
$file.'<br />' );
}
?>

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