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

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/home/mnnews/public_html/login/phpmyadmin/libraries/   drwxr-xr-x
Free 1.41 GB of 27.03 GB (5.21%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Linter.class.php (5.04 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Analyzes a query and gives user feedback.
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
    exit;
}

/**
* The linter itself.
*
* @package PhpMyAdmin
*/
class PMA_Linter
{

    
/**
     * Gets the starting position of each line.
     *
     * @param string $str String to be analyzed.
     *
     * @return array
     */
    
public static function getLines($str)
    {
        if ((!(
$str instanceof UtfString))
            && (
defined('USE_UTF_STRINGS')) && (USE_UTF_STRINGS)
        ) {
            
// If the lexer uses UtfString for processing then the position will
            // represent the position of the character and not the position of
            // the byte.
            
$str = new SqlParserUtfString($str);
        }

        
// The reason for using the '8bit' parameter is that the length
        // required is the length in bytes, not characters.
        //
        // Given the following string: `????+`, where `?` represents a
        // multi-byte character (lets assume that every `?` is a 2-byte
        // character) and `+` is a newline, the first value of `$i` is `0`
        // and the last one is `4` (because there are 5 characters). Bytes
        // `$str[0]` and `$str[1]` are the first character, `$str[2]` and
        // `$str[3]` are the second one and `$str[4]` is going to be the
        // first byte of the third character. The fourth and the last one
        // (which is actually a new line) aren't going to be processed at
        // all.
        
$len = ($str instanceof SqlParserUtfString) ?
            
$str->length() : mb_strlen($len, '8bit');

        
$lines = array(0);
        for (
$i = 0; $i < $len; ++$i) {
            if (
$str[$i] === "\n") {
                
$lines[] = $i + 1;
            }
        }
        return
$lines;
    }

    
/**
     * Computes the number of the line and column given an absolute position.
     *
     * @param array $lines The starting position of each line.
     * @param int   $pos   The absolute position
     *
     * @return array
     */
    
public static function findLineNumberAndColumn($lines, $pos)
    {
        
$line = 0;
        foreach (
$lines as $lineNo => $lineStart) {
            if (
$lineStart > $pos) {
                break;
            }
            
$line = $lineNo;
        }
        return array(
$line, $pos - $lines[$line]);
    }

    
/**
     * Runs the linting process.
     *
     * @param string $query The query to be checked.
     *
     * @return array
     */
    
public static function lint($query)
    {
        
// Disabling lint for huge queries to save some resources.
        
if (/*overload*/mb_strlen($query) > 10000) {
            return array(
                array(
                    
'message' => __(
                        
'Linting is disabled for this query because it exceeds the '
                        
. 'maximum length.'
                    
),
                    
'fromLine' => 0,
                    
'fromColumn' => 0,
                    
'toLine' => 0,
                    
'toColumn' => 0,
                    
'severity' => 'warning',
                )
            );
        }

        
/**
         * Lexer used for tokenizing the query.
         *
         * @var SqlParser\Lexer
         */
        
$lexer = new SqlParserLexer($query);

        
/**
         * Parsed used for analysing the query.
         *
         * @var SqlParser\Parser
         */
        
$parser = new SqlParserParser($lexer->list);

        
/**
         * Array containing all errors.
         *
         * @var array
         */
        
$errors = SqlParserUtilsError::get(array($lexer, $parser));

        
/**
         * The response containing of all errors.
         *
         * @var array
         */
        
$response = array();

        
/**
         * The starting position for each line.
         *
         * CodeMirror requires relative position to line, but the parser stores
         * only the absolute position of the character in string.
         *
         * @var array
         */
        
$lines = static::getLines($query);

        
// Building the response.
        
foreach ($errors as $idx => $error) {

            
// Starting position of the string that caused the error.
            
list($fromLine, $fromColumn) = static::findLineNumberAndColumn(
                
$lines, $error[3]
            );

            
// Ending position of the string that caused the error.
            
list($toLine, $toColumn) = static::findLineNumberAndColumn(
                
$lines, $error[3] + /*overload*/mb_strlen($error[2])
            );

            
// Building the response.
            
$response[] = array(
                
'message' => sprintf(
                    
__('%1$s (near <code>%2$s</code>)'),
                    
$error[0], $error[2]
                ),
                
'fromLine' => $fromLine,
                
'fromColumn' => $fromColumn,
                
'toLine' => $toLine,
                
'toColumn' => $toColumn,
                
'severity' => 'error',
            );
        }

        
// Sending back the answer.
        
return $response;
    }

}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0037 ]--