!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)

C:\Intranet\C\xampp\php\PEAR\DB\Table\   drwxrwxrwx
Free 4.09 GB of 39.52 GB (10.36%)
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:     Valid.php (9.42 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**

* DB_Table_Valid validates values against DB_Table column types.

* @category DB

* @package DB_Table
*
* @author Paul M. Jones <pmjones@php.net>
* @author Mark Wiesemann <wiesemann@php.net>

* @license http://www.gnu.org/copyleft/lesser.html LGPL

* @version $Id: Valid.php,v 1.7 2005/08/18 08:09:43 wiesemann Exp $
*
*/

/**
* DB_Table class for constants and other globals.
*/
require_once 'DB/Table.php';


/**
* validation ranges for integers
*/
if (! isset($GLOBALS['_DB_TABLE']['valid'])) {
    
$GLOBALS['_DB_TABLE']['valid'] = array(
        
'smallint' => array(pow(-215), pow(+215) - 1),
        
'integer' => array(pow(-231), pow(+231) - 1),
        
'bigint' => array(pow(-263), pow(+263) - 1)
    );
}


/**

* DB_Table_Valid validates values against DB_Table column types.

* @category DB

* @package DB_Table

* @author Paul M. Jones <pmjones@php.net>
* @author Mark Wiesemann <wiesemann@php.net>
*
*/

class DB_Table_Valid {
    
    
/**
    * 
    * Check if a value validates against the 'boolean' data type.
    * 
    * @static
    * 
    * @access public
    * 
    * @param mixed $value The value to validate.
    * 
    * @return boolean True if the value is valid for the data type, false
    * if not.
    * 
    */
    
    
function isBoolean($value)
    {
        if (
$value === true || $value === false) {
            return 
true;
        } elseif (
is_numeric($value) && ($value == || $value == 1)) {
            return 
true;
        } else {
            return 
false;
        }
    }
    
    
    
/**
    * 
    * Check if a value validates against the 'char' and 'varchar' data type.
    * 
    * We allow most anything here, only checking that the length is in range.
    * 
    * @static
    * 
    * @access public
    * 
    * @param mixed $value The value to validate.
    * 
    * @return boolean True if the value is valid for the data type, false
    * if not.
    * 
    */
    
    
function isChar($value$colsize)
    {
        
$is_scalar = (! is_array($value) && ! is_object($value));
        
$in_range = (strlen($value) <= $colsize);
        return 
$is_scalar && $in_range;
    }
    
    
    
/**
    * 
    * Check if a value validates against the 'smallint' data type.
    * 
    * @static
    * 
    * @access public
    * 
    * @param mixed $value The value to validate.
    * 
    * @return boolean True if the value is valid for the data type, false
    * if not.
    * 
    */
    
    
function isSmallint($value)
    {
        return 
is_integer($value) &&
            (
$value >= $GLOBALS['_DB_TABLE']['valid']['smallint'][0]) &&
            (
$value <= $GLOBALS['_DB_TABLE']['valid']['smallint'][1]);
    }
    
    
    
/**
    * 
    * Check if a value validates against the 'integer' data type.
    * 
    * @static
    * 
    * @access public
    * 
    * @param mixed $value The value to validate.
    * 
    * @return boolean True if the value is valid for the data type, false
    * if not.
    * 
    */
    
    
function isInteger($value)
    {
        return 
is_integer($value) &&
            (
$value >= $GLOBALS['_DB_TABLE']['valid']['integer'][0]) &&
            (
$value <= $GLOBALS['_DB_TABLE']['valid']['integer'][1]);
    }
    
    
    
/**
    * 
    * Check if a value validates against the 'bigint' data type.
    * 
    * @static
    * 
    * @access public
    * 
    * @param mixed $value The value to validate.
    * 
    * @return boolean True if the value is valid for the data type, false
    * if not.
    * 
    */
    
    
function isBigint($value)
    {
        return 
is_integer($value) &&
            (
$value >= $GLOBALS['_DB_TABLE']['valid']['bigint'][0]) &&
            (
$value <= $GLOBALS['_DB_TABLE']['valid']['bigint'][1]);
    }
    
    
    
/**
    * 
    * Check if a value validates against the 'decimal' data type.
    * 
    * For the column defined "DECIMAL(5,2)" standard SQL requires that
    * the column be able to store any value with 5 digits and 2
    * decimals. In this case, therefore, the range of values that can be
    * stored in the column is from -999.99 to 999.99.  DB_Table attempts
    * to enforce this behavior regardless of the RDBMS backend behavior.
    * 
    * @static
    * 
    * @access public
    * 
    * @param mixed $value The value to validate.
    * 
    * @param string $colsize The 'size' to use for validation (to make
    * sure of min/max and decimal places).
    * 
    * @param string $colscope The 'scope' to use for validation (to make
    * sure of min/max and decimal places).
    * 
    * @return boolean True if the value is valid for the data type, false
    * if not.
    * 
    */
    
    
function isDecimal($value$colsize$colscope)
    {
        if (! 
is_numeric($value)) {
            return 
false;
        }
        
        
// maximum number of digits allowed to the left
        // and right of the decimal point.
        
$right_max $colscope;
        
$left_max $colsize $colscope;
        
        
// ignore negative signs in all validation
        
$value str_replace('-'''$value);
        
        
// find the decimal point, then get the left
        // and right portions.
        
$pos strpos($value'.');
        if (
$pos === false) {
            
$left $value;
            
$right '';
        } else {
            
$left substr($value0$pos);
            
$right substr($value$pos+1);
        }
        
        
// how long are the left and right portions?
        
$left_len strlen($left);
        
$right_len strlen($right);
        
        
// do the portions exceed their maxes?
        
if ($left_len $left_max ||
            
$right_len $right_max) {
            
// one or the other exceeds the max lengths
            
return false;
        } else {
            
// both are within parameters
            
return true;
        }
    }
    
    
    
/**
    * 
    * Check if a value validates against the 'single' data type.
    * 
    * @static
    * 
    * @access public
    * 
    * @param mixed $value The value to validate.
    * 
    * @return boolean True if the value is valid for the data type, false
    * if not.
    * 
    */
    
    
function isSingle($value)
    {
        return 
is_float($value);
    }
    
    
    
/**
    * 
    * Check if a value validates against the 'double' data type.
    * 
    * @static
    * 
    * @access public
    * 
    * @param mixed $value The value to validate.
    * 
    * @return boolean True if the value is valid for the data type, false
    * if not.
    * 
    */
    
    
function isDouble($value)
    {
        return 
is_float($value);
    }
    
    
    
/**
    * 
    * Check if a value validates against the 'time' data type.
    * 
    * @static
    * 
    * @access public
    * 
    * @param mixed $value The value to validate.
    * 
    * @return boolean True if the value is valid for the data type, false
    * if not.
    * 
    */
    
    
function isTime($value)
    {
        
// hh:ii:ss
        // 01234567
        
$h  substr($value02);
        
$s1 substr($value21);
        
$i  substr($value32);
        
$s2 substr($value51);
        
$s  substr($value62);
        
        
// time check
        
if (strlen($value) != ||
            ! 
is_numeric($h) || $h || $h 23  ||
            
$s1 != ':' ||
            ! 
is_numeric($i) || $i || $i 59 ||
            
$s2 != ':' ||
            ! 
is_numeric($s) || $s || $s 59) {
            
            return 
false;
            
        } else {
        
            return 
true;
            
        }
    }
    
    
    
/**
    * 
    * Check if a value validates against the 'date' data type.
    * 
    * @static
    * 
    * @access public
    * 
    * @param mixed $value The value to validate.
    * 
    * @return boolean True if the value is valid for the data type, false
    * if not.
    * 
    */
    
    
function isDate($value)
    {
        
// yyyy-mm-dd
        // 0123456789
        
$y  substr($value04);
        
$s1 substr($value41);
        
$m  substr($value52);
        
$s2 substr($value71);
        
$d  substr($value82);
        
        
// date check
        
if (strlen($value) != 10 || $s1 != '-' || $s2 != '-' ||
            ! 
checkdate($m$d$y)) {
            
            return 
false;
            
        } else {
        
            return 
true;
            
        }
    }
    
    
    
/**
    * 
    * Check if a value validates against the 'timestamp' data type.
    * 
    * @static
    * 
    * @access public
    * 
    * @param mixed $value The value to validate.
    * 
    * @return boolean True if the value is valid for the data type, false
    * if not.
    * 
    */
    
    
function isTimestamp($value)
    {
        
// yyyy-mm-dd hh:ii:ss
        // 0123456789012345678
        
$date substr($value010);
        
$sep substr($value101);
        
$time substr($value118);
        
        if (
strlen($value) != 19 || $sep != ' ' ||
            ! 
DB_Table_Valid::isDate($date) ||
            ! 
DB_Table_Valid::isTime($time)) {
            
            return 
false;
            
        } else {
        
            return 
true;
            
        }
    }
    
    
    
/**
    * 
    * Check if a value validates against the 'clob' data type.
    * 
    * @static
    * 
    * @access public
    * 
    * @param mixed $value The value to validate.
    * 
    * @return boolean True if the value is valid for the data type, false
    * if not.
    * 
    */
    
    
function isClob($value)
    {
        return 
is_string($value);
    }
}

?>

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