!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\Chapter07\ajax\svg_chart\   drwxrwxrwx
Free 4.96 GB of 239.26 GB (2.08%)
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:     svg_chart.php (1.12 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// variable initialization
$maxX 50// our max X
$maxY 100//our max Y
$maxVariation $maxY 7// maximum Y variation for one step
// client tells last X value generated (defaults to -1)
if (isset($_GET['lastX']))
  
$lastX $_GET['lastX'];
else
  
$lastX = -1;
// client tells last Y value generated (defaults to random)
if (isset($_GET['lastY']))
  
$lastY $_GET['lastY'];
else
  
$lastY rand(0$maxY);
// calculate a new random number
$randomY = (int) ($lastY $maxVariation rand(0$maxVariation*2));
// make sure the new Y is between 0 and $maxY
while ($randomY 0$randomY += $maxVariation;
while (
$randomY $maxY$randomY -= $maxVariation;
// generate a new pair of numbers
$output $lastX ',' $randomY;
// clear the output 
if(ob_get_length()) ob_clean();
// headers are sent to prevent browsers from caching
header('Expires: Fri, 25 Dec 1980 00:00:00 GMT'); // time in the past
header('Last-Modified: ' gmdate('D, d M Y H:i:s') . 'GMT'); 
header('Cache-Control: no-cache, must-revalidate'); 
header('Pragma: no-cache');
// send the results to the client
echo $output;
?>

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