!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/local/wp/bundle/rmccue/requests/src/Auth/   drwxr-xr-x
Free 685.44 GB of 879.6 GB (77.93%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Basic.php (2.48 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Basic Authentication provider
 *
 * @package Requests\Authentication
 */

namespace WpOrg\Requests\Auth;

use WpOrg\Requests\Auth;
use WpOrg\Requests\Exception\ArgumentCount;
use WpOrg\Requests\Exception\InvalidArgument;
use WpOrg\Requests\Hooks;

/**
 * Basic Authentication provider
 *
 * Provides a handler for Basic HTTP authentication via the Authorization
 * header.
 *
 * @package Requests\Authentication
 */
class Basic implements Auth {
    /**
     * Username
     *
     * @var string
     */
    public $user;

    /**
     * Password
     *
     * @var string
     */
    public $pass;

    /**
     * Constructor
     *
     * @since 2.0 Throws an `InvalidArgument` exception.
     * @since 2.0 Throws an `ArgumentCount` exception instead of the Requests base `Exception.
     *
     * @param array|null $args Array of user and password. Must have exactly two elements
     *
     * @throws \WpOrg\Requests\Exception\InvalidArgument When the passed argument is not an array or null.
     * @throws \WpOrg\Requests\Exception\ArgumentCount   On incorrect number of array elements (`authbasicbadargs`).
     */
    public function __construct($args = null) {
        if (is_array($args)) {
            if (count($args) !== 2) {
                throw ArgumentCount::create('an array with exactly two elements', count($args), 'authbasicbadargs');
            }

            list($this->user, $this->pass) = $args;
            return;
        }

        if ($args !== null) {
            throw InvalidArgument::create(1, '$args', 'array|null', gettype($args));
        }
    }

    /**
     * Register the necessary callbacks
     *
     * @see \WpOrg\Requests\Auth\Basic::curl_before_send()
     * @see \WpOrg\Requests\Auth\Basic::fsockopen_header()
     * @param \WpOrg\Requests\Hooks $hooks Hook system
     */
    public function register(Hooks $hooks) {
        $hooks->register('curl.before_send', [$this, 'curl_before_send']);
        $hooks->register('fsockopen.after_headers', [$this, 'fsockopen_header']);
    }

    /**
     * Set cURL parameters before the data is sent
     *
     * @param resource|\CurlHandle $handle cURL handle
     */
    public function curl_before_send(&$handle) {
        curl_setopt($handle, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
        curl_setopt($handle, CURLOPT_USERPWD, $this->getAuthString());
    }

    /**
     * Add extra headers to the request before sending
     *
     * @param string $out HTTP header string
     */
    public function fsockopen_header(&$out) {
        $out .= sprintf("Authorization: Basic %s\r\n", base64_encode($this->getAuthString()));
    }

    /**
     * Get the authentication string (user:pass)
     *
     * @return string
     */
    public function getAuthString() {
        return $this->user . ':' . $this->pass;
    }
}

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