!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/laravel/framework/src/Illuminate/Foundation/   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:     PackageManifest.php (4.27 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Foundation;

use 
Exception;
use 
Illuminate\Filesystem\Filesystem;

class 
PackageManifest
{
    
/**
     * The filesystem instance.
     *
     * @var \Illuminate\Filesystem\Filesystem
     */
    
public $files;

    
/**
     * The base path.
     *
     * @var string
     */
    
public $basePath;

    
/**
     * The vendor path.
     *
     * @var string
     */
    
public $vendorPath;

    
/**
     * The manifest path.
     *
     * @var string|null
     */
    
public $manifestPath;

    
/**
     * The loaded manifest array.
     *
     * @var array
     */
    
public $manifest;

    
/**
     * Create a new package manifest instance.
     *
     * @param  \Illuminate\Filesystem\Filesystem  $files
     * @param  string  $basePath
     * @param  string  $manifestPath
     * @return void
     */
    
public function __construct(Filesystem $files$basePath$manifestPath)
    {
        
$this->files $files;
        
$this->basePath $basePath;
        
$this->manifestPath $manifestPath;
        
$this->vendorPath $basePath.'/vendor';
    }

    
/**
     * Get all of the service provider class names for all packages.
     *
     * @return array
     */
    
public function providers()
    {
        return 
$this->config('providers');
    }

    
/**
     * Get all of the aliases for all packages.
     *
     * @return array
     */
    
public function aliases()
    {
        return 
$this->config('aliases');
    }

    
/**
     * Get all of the values for all packages for the given configuration name.
     *
     * @param  string  $key
     * @return array
     */
    
public function config($key)
    {
        return 
collect($this->getManifest())->flatMap(function ($configuration) use ($key) {
            return (array) (
$configuration[$key] ?? []);
        })->
filter()->all();
    }

    
/**
     * Get the current package manifest.
     *
     * @return array
     */
    
protected function getManifest()
    {
        if (! 
is_null($this->manifest)) {
            return 
$this->manifest;
        }

        if (! 
is_file($this->manifestPath)) {
            
$this->build();
        }

        return 
$this->manifest is_file($this->manifestPath) ?
            
$this->files->getRequire($this->manifestPath) : [];
    }

    
/**
     * Build the manifest and write it to disk.
     *
     * @return void
     */
    
public function build()
    {
        
$packages = [];

        if (
$this->files->exists($path $this->vendorPath.'/composer/installed.json')) {
            
$installed json_decode($this->files->get($path), true);

            
$packages $installed['packages'] ?? $installed;
        }

        
$ignoreAll in_array('*'$ignore $this->packagesToIgnore());

        
$this->write(collect($packages)->mapWithKeys(function ($package) {
            return [
$this->format($package['name']) => $package['extra']['laravel'] ?? []];
        })->
each(function ($configuration) use (&$ignore) {
            
$ignore array_merge($ignore$configuration['dont-discover'] ?? []);
        })->
reject(function ($configuration$package) use ($ignore$ignoreAll) {
            return 
$ignoreAll || in_array($package$ignore);
        })->
filter()->all());
    }

    
/**
     * Format the given package name.
     *
     * @param  string  $package
     * @return string
     */
    
protected function format($package)
    {
        return 
str_replace($this->vendorPath.'/'''$package);
    }

    
/**
     * Get all of the package names that should be ignored.
     *
     * @return array
     */
    
protected function packagesToIgnore()
    {
        if (! 
is_file($this->basePath.'/composer.json')) {
            return [];
        }

        return 
json_decode(file_get_contents(
            
$this->basePath.'/composer.json'
        
), true)['extra']['laravel']['dont-discover'] ?? [];
    }

    
/**
     * Write the given manifest array to disk.
     *
     * @param  array  $manifest
     * @return void
     *
     * @throws \Exception
     */
    
protected function write(array $manifest)
    {
        if (! 
is_writable($dirname dirname($this->manifestPath))) {
            throw new 
Exception("The {$dirname} directory must be present and writable.");
        }

        
$this->files->replace(
            
$this->manifestPath'<?php return '.var_export($manifesttrue).';'
        
);
    }
}

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