!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/php/WP_CLI/Fetchers/   drwxr-xr-x
Free 712.47 GB of 879.6 GB (81%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace WP_CLI\Fetchers;

use WP_CLI;
use WP_CLI\ExitException;

/**
 * Fetch a WordPress entity for use in a subcommand.
 */
abstract class Base {

    /**
     * The message to display when an item is not found.
     *
     * @var string
     */
    protected $msg;

    /**
     * @param string|int $arg The raw CLI argument.
     * @return mixed|false The item if found; false otherwise.
     */
    abstract public function get( $arg );

    /**
     * Like get(), but calls WP_CLI::error() instead of returning false.
     *
     * @param string $arg The raw CLI argument.
     * @return mixed The item if found.
     * @throws ExitException If the item is not found.
     */
    public function get_check( $arg ) {
        $item = $this->get( $arg );

        if ( ! $item ) {
            WP_CLI::error( sprintf( $this->msg, $arg ) );
        }

        return $item;
    }

    /**
     * Get multiple items.
     *
     * @param array $args The raw CLI arguments.
     * @return array The list of found items.
     */
    public function get_many( $args ) {
        $items = [];

        foreach ( $args as $arg ) {
            $item = $this->get( $arg );

            if ( $item ) {
                $items[] = $item;
            } else {
                WP_CLI::warning( sprintf( $this->msg, $arg ) );
            }
        }

        return $items;
    }
}

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