!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.2 GB of 57.97 GB (22.77%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     AuthHelper.php (12.03 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;
use 
Composer\Downloader\TransportException;

/**
 * @author Jordi Boggiano <j.boggiano@seld.be>
 */
class AuthHelper
{
    protected 
$io;
    protected 
$config;
    private 
$displayedOriginAuthentications = array();

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

    
/**
     * @param string      $origin
     * @param string|bool $storeAuth
     */
    
public function storeAuth($origin$storeAuth)
    {
        
$store false;
        
$configSource $this->config->getAuthConfigSource();
        if (
$storeAuth === true) {
            
$store $configSource;
        } elseif (
$storeAuth === 'prompt') {
            
$answer $this->io->askAndValidate(
                
'Do you want to store credentials for '.$origin.' in '.$configSource->getName().' ? [Yn] ',
                function (
$value) {
                    
$input strtolower(substr(trim($value), 01));
                    if (
in_array($input, array('y','n'))) {
                        return 
$input;
                    }
                    throw new 
\RuntimeException('Please answer (y)es or (n)o');
                },
                
null,
                
'y'
            
);

            if (
$answer === 'y') {
                
$store $configSource;
            }
        }
        if (
$store) {
            
$store->addConfigSetting(
                
'http-basic.'.$origin,
                
$this->io->getAuthentication($origin)
            );
        }
    }

    
/**
     * @param  string      $url
     * @param  string      $origin
     * @param  int         $statusCode HTTP status code that triggered this call
     * @param  string|null $reason     a message/description explaining why this was called
     * @param  string[]    $headers
     * @return array|null  containing retry (bool) and storeAuth (string|bool) keys, if retry is true the request should be
     *                                retried, if storeAuth is true then on a successful retry the authentication should be persisted to auth.json
     */
    
public function promptAuthIfNeeded($url$origin$statusCode$reason null$headers = array())
    {
        
$storeAuth false;

        if (
in_array($origin$this->config->get('github-domains'), true)) {
            
$gitHubUtil = new GitHub($this->io$this->confignull);
            
$message "\n";

            
$rateLimited $gitHubUtil->isRateLimited($headers);
            if (
$rateLimited) {
                
$rateLimit $gitHubUtil->getRateLimit($headers);
                if (
$this->io->hasAuthentication($origin)) {
                    
$message 'Review your configured GitHub OAuth token or enter a new one to go over the API rate limit.';
                } else {
                    
$message 'Create a GitHub OAuth token to go over the API rate limit.';
                }

                
$message sprintf(
                    
'GitHub API limit (%d calls/hr) is exhausted, could not fetch '.$url.'. '.$message.' You can also wait until %s for the rate limit to reset.',
                    
$rateLimit['limit'],
                    
$rateLimit['reset']
                ).
"\n";
            } else {
                
$message .= 'Could not fetch '.$url.', please ';
                if (
$this->io->hasAuthentication($origin)) {
                    
$message .= 'review your configured GitHub OAuth token or enter a new one to access private repos';
                } else {
                    
$message .= 'create a GitHub OAuth token to access private repos';
                }
            }

            if (!
$gitHubUtil->authorizeOAuth($origin)
                && (!
$this->io->isInteractive() || !$gitHubUtil->authorizeOAuthInteractively($origin$message))
            ) {
                throw new 
TransportException('Could not authenticate against '.$origin401);
            }
        } elseif (
in_array($origin$this->config->get('gitlab-domains'), true)) {
            
$message "\n".'Could not fetch '.$url.', enter your ' $origin ' credentials ' .($statusCode === 401 'to access private repos' 'to go over the API rate limit');
            
$gitLabUtil = new GitLab($this->io$this->confignull);

            if (
$this->io->hasAuthentication($origin) && ($auth $this->io->getAuthentication($origin)) && in_array($auth['password'], array('gitlab-ci-token''private-token''oauth2'), true)) {
                throw new 
TransportException("Invalid credentials for '" $url "', aborting."$statusCode);
            }

            if (!
$gitLabUtil->authorizeOAuth($origin)
                && (!
$this->io->isInteractive() || !$gitLabUtil->authorizeOAuthInteractively(parse_url($urlPHP_URL_SCHEME), $origin$message))
            ) {
                throw new 
TransportException('Could not authenticate against '.$origin401);
            }
        } elseif (
$origin === 'bitbucket.org' || $origin === 'api.bitbucket.org') {
            
$askForOAuthToken true;
            
$origin 'bitbucket.org';
            if (
$this->io->hasAuthentication($origin)) {
                
$auth $this->io->getAuthentication($origin);
                if (
$auth['username'] !== 'x-token-auth') {
                    
$bitbucketUtil = new Bitbucket($this->io$this->config);
                    
$accessToken $bitbucketUtil->requestToken($origin$auth['username'], $auth['password']);
                    if (!empty(
$accessToken)) {
                        
$this->io->setAuthentication($origin'x-token-auth'$accessToken);
                        
$askForOAuthToken false;
                    }
                } else {
                    throw new 
TransportException('Could not authenticate against ' $origin401);
                }
            }

            if (
$askForOAuthToken) {
                
$message "\n".'Could not fetch ' $url ', please create a bitbucket OAuth token to ' . (($statusCode === 401 || $statusCode === 403) ? 'access private repos' 'go over the API rate limit');
                
$bitBucketUtil = new Bitbucket($this->io$this->config);
                if (!
$bitBucketUtil->authorizeOAuth($origin)
                    && (!
$this->io->isInteractive() || !$bitBucketUtil->authorizeOAuthInteractively($origin$message))
                ) {
                    throw new 
TransportException('Could not authenticate against ' $origin401);
                }
            }
        } else {
            
// 404s are only handled for github
            
if ($statusCode === 404) {
                return;
            }

            
// fail if the console is not interactive
            
if (!$this->io->isInteractive()) {
                if (
$statusCode === 401) {
                    
$message "The '" $url "' URL required authentication.\nYou must be using the interactive console to authenticate";
                } elseif (
$statusCode === 403) {
                    
$message "The '" $url "' URL could not be accessed: " $reason;
                } else {
                    
$message "Unknown error code '" $statusCode "', reason: " $reason;
                }

                throw new 
TransportException($message$statusCode);
            }
            
// fail if we already have auth
            
if ($this->io->hasAuthentication($origin)) {
                throw new 
TransportException("Invalid credentials for '" $url "', aborting."$statusCode);
            }

            
$this->io->writeError('    Authentication required (<info>'.$origin.'</info>):');
            
$username $this->io->ask('      Username: ');
            
$password $this->io->askAndHideAnswer('      Password: ');
            
$this->io->setAuthentication($origin$username$password);
            
$storeAuth $this->config->get('store-auths');
        }

        return array(
'retry' => true'storeAuth' => $storeAuth);
    }

    
/**
     * @param  array  $headers
     * @param  string $origin
     * @param  string $url
     * @return array  updated headers array
     */
    
public function addAuthenticationHeader(array $headers$origin$url)
    {
        if (
$this->io->hasAuthentication($origin)) {
            
$authenticationDisplayMessage null;
            
$auth $this->io->getAuthentication($origin);
            if (
$auth['password'] === 'bearer') {
                
$headers[] = 'Authorization: Bearer '.$auth['username'];
            } elseif (
'github.com' === $origin && 'x-oauth-basic' === $auth['password']) {
                
// only add the access_token if it is actually a github API URL
                
if (preg_match('{^https?://api\.github\.com/}'$url)) {
                    
$headers[] = 'Authorization: token '.$auth['username'];
                    
$authenticationDisplayMessage 'Using GitHub token authentication';
                }
            } elseif (
                
in_array($origin$this->config->get('gitlab-domains'), true)
                && 
in_array($auth['password'], array('oauth2''private-token''gitlab-ci-token'), true)
            ) {
                if (
$auth['password'] === 'oauth2') {
                    
$headers[] = 'Authorization: Bearer '.$auth['username'];
                    
$authenticationDisplayMessage 'Using GitLab OAuth token authentication';
                } elseif (
$auth['password'] === 'private-token' || $auth['password'] === 'gitlab-ci-token') {
                    
$headers[] = 'PRIVATE-TOKEN: '.$auth['username'];
                    
$authenticationDisplayMessage 'Using GitLab private token authentication';
                }
            } elseif (
                
'bitbucket.org' === $origin
                
&& $url !== Bitbucket::OAUTH2_ACCESS_TOKEN_URL
                
&& 'x-token-auth' === $auth['username']
            ) {
                if (!
$this->isPublicBitBucketDownload($url)) {
                    
$headers[] = 'Authorization: Bearer ' $auth['password'];
                    
$authenticationDisplayMessage 'Using Bitbucket OAuth token authentication';
                }
            } else {
                
$authStr base64_encode($auth['username'] . ':' $auth['password']);
                
$headers[] = 'Authorization: Basic '.$authStr;
                
$authenticationDisplayMessage 'Using HTTP basic authentication with username "' $auth['username'] . '"';
            }

            if (
$authenticationDisplayMessage && (!isset($this->displayedOriginAuthentications[$origin]) || $this->displayedOriginAuthentications[$origin] !== $authenticationDisplayMessage)) {
                
$this->io->writeError($authenticationDisplayMessagetrueIOInterface::DEBUG);
                
$this->displayedOriginAuthentications[$origin] = $authenticationDisplayMessage;
            }
        } elseif (
in_array($origin, array('api.bitbucket.org''api.github.com'), true)) {
            return 
$this->addAuthenticationHeader($headersstr_replace('api.'''$origin), $url);
        }

        return 
$headers;
    }

    
/**
     * @link https://github.com/composer/composer/issues/5584
     *
     * @param string $urlToBitBucketFile URL to a file at bitbucket.org.
     *
     * @return bool Whether the given URL is a public BitBucket download which requires no authentication.
     */
    
public function isPublicBitBucketDownload($urlToBitBucketFile)
    {
        
$domain parse_url($urlToBitBucketFilePHP_URL_HOST);
        if (
strpos($domain'bitbucket.org') === false) {
            
// Bitbucket downloads are hosted on amazonaws.
            // We do not need to authenticate there at all
            
return true;
        }

        
$path parse_url($urlToBitBucketFilePHP_URL_PATH);

        
// Path for a public download follows this pattern /{user}/{repo}/downloads/{whatever}
        // {@link https://blog.bitbucket.org/2009/04/12/new-feature-downloads/}
        
$pathParts explode('/'$path);

        return 
count($pathParts) >= && $pathParts[3] == 'downloads';
    }
}

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