!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\Images\   drwxrwxrwx
Free 770.02 MB of 239.26 GB (0.31%)
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:     8.php (2.57 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// JpGraph does not work with notices enabled
error_reporting(E_ALL E_NOTICE);

// Include the necessary JpGraph libraries
require_once ('jpgraph.php');       // Core engine
require_once ('jpgraph_bar.php');   // Bar graph

// Sample sales data: could be a database query
$xdata=array('Mousemats','Pens','T-Shirts','Mugs'); // X Axis
$ydata=array (35,43,15,10);                         // Y Axis

// Set up the graph
$graph = new Graph(400,200,'auto');     // Width, height,cache filename
$graph->img->SetMargin(40,20,20,40);    // Margin widths
$graph->SetScale('textlin');            // X text scale, Y linear scale
$graph->SetColor('green');              // Plot background green
$graph->SetMarginColor('navy');         // Margin color navy
$graph->SetShadow();                    // Use a drop shadow
$graph->SetFrame(true,'blue');          // Blue frame round the image

// Set up the graph title
$graph->title->Set('Sales Figures for March');  // Title text
$graph->title->SetColor('white');               // Title color
$graph->title->SetFont(FF_VERDANA,FS_BOLD,14);  // Title font

// Set up the X Axis
$graph->xaxis->title->Set('Product Type');              // Axis title text
$graph->xaxis->title->SetColor('yellow');               // Axis title color
$graph->xaxis->title->SetFont(FF_VERDANA,FS_BOLD,10);   // Axis title font
$graph->xaxis->SetTickLabels($xdata);                   // Add labels
$graph->xaxis->SetColor('silver','orange');             // Axis colors
$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,8);         // Axis font
$graph->xaxis->HideTicks();                             // Hide ticks

// Set up the Y Axis
$graph->yaxis->title->Set('Units Sold');                // Axis title text
$graph->yaxis->title->SetColor('yellow');               // Axis title color
$graph->yaxis->title->SetFont(FF_VERDANA,FS_BOLD,10);   // Axis title font
$graph->yaxis->SetColor('silver','orange');             // Axis colors
$graph->yaxis->SetFont(FF_VERDANA,FS_NORMAL,8);         // Axis font
$graph->yaxis->HideTicks();                             // Hide ticks

// Create the Bar graph plot
$bplot = new BarPlot($ydata);                   // Instantiate with Y data
$bplot->SetWidth(0.75);                         // Width of bars
$scol=array(255,051,204);                       // Gradient start color
$ecol=array(204,0,102);                         // Gradient end color
$bplot->SetFillGradient($scol,$ecol,GRAD_VER);  // Add vertical gradient

// Finishing
$graph->Add($bplot);    // Add bar plot to graph
$graph->Stroke();       // Send to browser
?>

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