!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.4.16. PHP/5.4.16 

uname -a: Linux roko-bkp 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64 

uid=48(apache) gid=48(apache) groups=48(apache),1003(webmaster) 

Safe-mode: OFF (not secure)

/var/www/html/site/ipanel/app/core/doctrine/Doctrine/   drwxr-xr-x
Free 9.19 GB of 93.48 GB (9.83%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Validator.php (7.26 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 *  $Id: Validator.php 6669 2009-11-04 19:50:10Z jwage $
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information, see
 * <http://www.phpdoctrine.org>.
 */

/**
 * This class is responsible for performing all validations on record properties
 *
 * @package     Doctrine
 * @subpackage  Validator
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @link        www.phpdoctrine.org
 * @since       1.0
 * @version     $Revision: 6669 $
 * @author      Roman Borschel <roman@code-factory.org>
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
 */
class Doctrine_Validator extends Doctrine_Locator_Injectable
{
    
/**
     * @var array $validators           an array of validator objects
     */
    
private static $validators = array();

    
/**
     * Get a validator instance for the passed $name
     *
     * @param  string   $name  Name of the validator or the validator class name
     * @return Doctrine_Validator_Interface $validator
     */
    
public static function getValidator($name)
    {
        if ( ! isset(
self::$validators[$name])) {
            
$class 'Doctrine_Validator_' ucwords(strtolower($name));
            if (
class_exists($class)) {
                
self::$validators[$name] = new $class;
            } else if (
class_exists($name)) {
                
self::$validators[$name] = new $name;
            } else {
                throw new 
Doctrine_Exception("Validator named '$name' not available.");
            }

        }
        return 
self::$validators[$name];
    }

    
/**
     * Validates a given record and saves possible errors in Doctrine_Validator::$stack
     *
     * @param  Doctrine_Record $record
     * @return void
     */
    
public function validateRecord(Doctrine_Record $record)
    {
        
$table $record->getTable();

        
// if record is transient all fields will be validated
        // if record is persistent only the modified fields will be validated
        
$fields $record->exists() ? $record->getModified():$record->getData();
        foreach (
$fields as $fieldName => $value) {
            
$table->validateField($fieldName$value$record);
        }
        
$table->validateUniques($record);
    }

    
/**
     * Validates the length of a field.
     *
     * @param  string  $value         Value to validate
     * @param  string  $type          Type of field being validated
     * @param  string  $maximumLength Maximum length allowed for the column
     * @return boolean $success       True/false for whether the value passed validation
     */
    
public static function validateLength($value$type$maximumLength)
    {
        if (
$maximumLength === null ) {
            return 
true;
        }
        if (
$type == 'timestamp' || $type == 'integer' || $type == 'enum') {
            return 
true;
        } else if (
$type == 'array' || $type == 'object') {
            
$length strlen(serialize($value));
        } else if (
$type == 'decimal' || $type == 'float') {
            
$value abs($value);

            
$localeInfo localeconv();
            
$decimalPoint $localeInfo['mon_decimal_point'] ? $localeInfo['mon_decimal_point'] : $localeInfo['decimal_point'];
            
$e explode($decimalPoint$value);

            
$length strlen($e[0]);
            
            if (isset(
$e[1])) {
                
$length $length strlen($e[1]);
            }
        } else if (
$type == 'blob') {
            
$length strlen($value);
        } else {
            
$length self::getStringLength($value);
        }
        if (
$length $maximumLength) {
            return 
false;
        }
        return 
true;
    }

    
/**
     * Get length of passed string. Will use multibyte character functions if they exist
     *
     * @param string $string 
     * @return integer $length
     */
    
public static function getStringLength($string)
    {
        if (
function_exists('iconv_strlen')) {
            return 
iconv_strlen($string'UTF-8');
        } else if (
function_exists('mb_strlen')) {
            return 
mb_strlen($string'utf8');
        } else {
            return 
strlen(utf8_decode($string));
        }
    }

    
/**
     * Whether or not errors exist on this validator
     *
     * @return boolean True/false for whether or not this validate instance has error
     */
    
public function hasErrors()
    {
        return (
count($this->stack) > 0);
    }

    
/**
     * Validate the type of the passed variable
     *
     * @param  mixed  $var   Variable to validate
     * @param  string $type  Type of the variable expected
     * @return boolean
     */
     
public static function isValidType($var$type)
     {
         if (
$var instanceof Doctrine_Expression) {
             return 
true;
         } else if (
$var === null) {
             return 
true;
         } else if (
is_object($var)) {
             return 
$type == 'object';
         }

         switch (
$type) {
             case 
'float':
             case 
'double':
             case 
'decimal':
                 return (string)
$var == strval(floatval($var));
             case 
'integer':
                 return (string)
$var == strval(round(floatval($var)));
             case 
'string':
                 return 
is_string($var) || is_numeric($var);
             case 
'blob':
                 return 
is_string($var) || is_resource($var);
             case 
'clob':
             case 
'gzip':
                 return 
is_string($var);
             case 
'array':
                 return 
is_array($var);
             case 
'object':
                 return 
is_object($var);
             case 
'boolean':
                 return 
is_bool($var) || (is_numeric($var) && ($var == || $var == 1));
             case 
'timestamp':
                 
$validator self::getValidator('timestamp');
                 return 
$validator->validate($var);
             case 
'time':
                 
$validator self::getValidator('time');
                 return 
$validator->validate($var);
             case 
'date':
                 
$validator self::getValidator('date');
                 return 
$validator->validate($var);
             case 
'enum':
                 return 
is_string($var) || is_int($var);
             case 
'set':
                 return 
is_array($var) || is_string($var);
             default:
                 return 
true;
         }
     }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0048 ]--