!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\SPLIB\Database\   drwxrwxrwx
Free 4.97 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:     SimplePager.php (1.54 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
* @package SPLIB
* $Id: SimplePager.php,v 1.1 2003/12/12 08:06:07 kevin Exp $
*/
/**
* SimplePager class
* Used to help calculate the number of pages in a database result set
* @access public
* @package SPLIB
*/
class SimplePager {
    
/**
    * Total number of pages
    * @access private
    * @var int
    */
    
var $totalPages;

    
/**
    * The row MySQL should start it's select with
    * @access private
    * @var int
    */
    
var $startRow;

    
/**
    * SimplePager Constructor
    * @param int number of rows per page
    * @param int total number of rows available
    * @param int current page being viewed
    * @access public
    */
    
function SimplePager($rowsPerPage,$numRows,$currentPage=1) {
        
// Calculate the total number of pages
        
$this->totalPages=ceil($numRows/$rowsPerPage);
        
// Check that a valid page has been provided
        
if ( $currentPage )
            
$currentPage=1;
        else if ( 
$currentPage $this->totalPages )
            
$currentPage=$this->totalPages;
        
// Calculate the row to start the select with
        
$this->startRow=(($currentPage 1) * $rowsPerPage);
    }

    
/**
    * Returns the total number of pages available
    * @return int
    * @access public
    */
    
function getTotalPages () {
        return 
$this->totalPages;
    }

    
/**
    * Returns the row to start the select with
    * @return int
    * @access public
    */
    
function getStartRow() {
        return 
$this->startRow;
    }
}
?>

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