!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\phpold\AjaxPhpCode\Chapter04\ajax\validate\   drwxrwxrwx
Free 4.96 GB of 239.26 GB (2.07%)
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:     index_top.php (2.08 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// enable PHP session
session_start();

// Build HTML <option> tags
function buildOptions($options$selectedOption)
{
  foreach (
$options as $value => $text)
  {
    if (
$value == $selectedOption)
    {
      echo 
'<option value="' $value 
           
'" selected="selected">' $text '</option>';
    }
    else
    {
      echo 
'<option value="' $value '">' $text '</option>';
    }
  }
}

// initialize gender options array
$genderOptions = array("0" => "[Select]",
                       
"1" => "Male",
                       
"2" => "Female");

// initialize month options array
$monthOptions = array("0" => "[Select]",
                      
"1" => "January",
                      
"2" => "February",
 
                      
"3" => "March",
                      
"4" => "April",
                      
"5" => "May",
                      
"6" => "June",
                      
"7" => "July",
                      
"8" => "August",
                      
"9" => "September",
                      
"10" => "October",
                      
"11" => "November",
                      
"12" => "December");

// initialize some session variables to prevent PHP throwing Notices
if (!isset($_SESSION['values']))
{
  
$_SESSION['values']['txtUsername'] = '';
  
$_SESSION['values']['txtName'] = '';
  
$_SESSION['values']['selGender'] = '';
  
$_SESSION['values']['selBthMonth'] = '';
  
$_SESSION['values']['txtBthDay'] = '';
  
$_SESSION['values']['txtBthYear'] = '';
  
$_SESSION['values']['txtEmail'] = '';
  
$_SESSION['values']['txtPhone'] = '';
  
$_SESSION['values']['chkReadTerms'] = '';
}
if (!isset(
$_SESSION['errors']))
{
  
$_SESSION['errors']['txtUsername'] = 'hidden';
  
$_SESSION['errors']['txtName'] = 'hidden';
  
$_SESSION['errors']['selGender'] = 'hidden';
  
$_SESSION['errors']['selBthMonth'] = 'hidden';
  
$_SESSION['errors']['txtBthDay'] = 'hidden';
  
$_SESSION['errors']['txtBthYear'] = 'hidden';
  
$_SESSION['errors']['txtEmail'] = 'hidden';
  
$_SESSION['errors']['txtPhone'] = 'hidden';
  
$_SESSION['errors']['chkReadTerms'] = 'hidden';
}
?>

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