!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\PHPBasics\   drwxrwxrwx
Free 8.79 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:     5.php (909 B)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// This works fine
echo ( "<br />Requiring Once: " );
require_once (
'include_me.php');

// This works fine as well
echo ( "<br />Including: " );
include (
'include_me.php');

// Nothing happens as file is already included
echo ( "<br />Including Once: " );
include_once (
'include_me.php');

// This is fine
echo ( "<br />Requiring: " );
require (
'include_me.php');

// Again nothing happens - the file is included
echo ( "<br />Requiring Once again: " );
require_once (
'include_me.php');

// Produces a warning message as the file doesn't exist
echo ( "<br />Include the wrong file: " );
include (
'include_wrong.php');

// Produces a fatal error and script execution halts
echo ( "<br />Requiring the wrong file: " );
require (
'include_wrong.php');

// This will never be executed as we have a fatal error
echo ( "<br />Including again: " );
include (
'include_me.php');
?>

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