!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/LogRecorder/   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:     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 ::
 
[ ok ]

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

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

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