!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/gwp.picotech.app/public_html/vendor/laravel/pail/src/   drwxr-xr-x
Free 28.41 GB of 117.98 GB (24.08%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Laravel\Pail;

use 
Illuminate\Console\Command;
use 
Laravel\Pail\ValueObjects\MessageLogged;

class 
Options
{
    
/**
     * Creates a new instance of the tail options.
     */
    
public function __construct(
        protected 
int $timeout,
        protected ?
string $authId,
        protected ?
string $level,
        protected ?
string $filter,
        protected ?
string $message,
    ) {
        
//
    
}

    
/**
     * Creates a new instance of the tail options from the given console command.
     */
    
public static function fromCommand(Command $command): static
    {
        
$authId $command->option('auth') ?? $command->option('user');
        
assert(is_string($authId) || $authId === null);

        
$level $command->option('level');
        
assert(is_string($level) || $level === null);

        
$filter $command->option('filter');
        
assert(is_string($filter) || $filter === null);

        
$message $command->option('message');
        
assert(is_string($message) || $message === null);

        
$timeout = (int) $command->option('timeout');

        return new static(
$timeout$authId$level$filter$message);
    }

    
/**
     * Whether the tail options accept the given message logged.
     */
    
public function accepts(MessageLogged $messageLogged): bool
    
{
        if (
is_string($this->authId) && $messageLogged->authId() !== $this->authId) {
            return 
false;
        }

        if (
is_string($this->level) && strtolower($messageLogged->level()) !== strtolower($this->level)) {
            return 
false;
        }

        if (
is_string($this->filter) && ! str_contains(strtolower((string) $messageLogged), strtolower($this->filter))) {
            return 
false;
        }

        if (
is_string($this->message) && ! str_contains(strtolower($messageLogged->message()), strtolower($this->message))) {
            return 
false;
        }

        return 
true;
    }

    
/**
     * Returns the number of seconds before the process is killed.
     */
    
public function timeout(): int
    
{
        return 
$this->timeout;
    }
}

:: 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.0041 ]--