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-crm-data.php
<?php /** * Compatibility functions for the Jetpack CRM plugin. * * @since 9.0.0 * * @package automattic/jetpack */ namespace Automattic\Jetpack; use WP_Error; /** * Provides Jetpack CRM plugin data. */ class Jetpack_CRM_Data { const JETPACK_CRM_PLUGIN_SLUG = 'zero-bs-crm/ZeroBSCRM.php'; /** * Provides Jetpack CRM plugin data for use in the Contact Form block sidebar menu. * * @return array An array containing the Jetpack CRM plugin data. */ public function get_crm_data() { $plugins = Plugins_Installer::get_plugins(); // Set default values. $response = array( 'crm_installed' => false, 'crm_active' => false, 'crm_version' => null, 'jp_form_ext_enabled' => null, 'can_install_crm' => false, 'can_activate_crm' => false, 'can_activate_extension' => false, ); if ( isset( $plugins[ self::JETPACK_CRM_PLUGIN_SLUG ] ) ) { $response['crm_installed'] = true; $crm_data = $plugins[ self::JETPACK_CRM_PLUGIN_SLUG ]; $response['crm_active'] = $crm_data['active']; $response['crm_version'] = $crm_data['Version']; if ( $response['crm_active'] ) { if ( function_exists( 'zeroBSCRM_isExtensionInstalled' ) ) { $response['jp_form_ext_enabled'] = zeroBSCRM_isExtensionInstalled( 'jetpackforms' ); } } } $response['can_install_crm'] = $response['crm_installed'] ? false : current_user_can( 'install_plugins' ); $response['can_activate_crm'] = $response['crm_active'] ? false : current_user_can( 'activate_plugins' ); if ( $response['crm_active'] && function_exists( 'zeroBSCRM_extension_install_jetpackforms' ) ) { // phpcs:ignore WordPress.WP.Capabilities.Unknown $response['can_activate_extension'] = current_user_can( 'admin_zerobs_manage_options' ); } return $response; } /** * Activates Jetpack CRM's Jetpack Forms extension. This is used by a button in the Jetpack Contact Form * sidebar menu. * * @return true|WP_Error Returns true if activation is success, else returns a WP_Error object. */ public function activate_crm_jetpackforms_extension() { if ( function_exists( 'zeroBSCRM_extension_install_jetpackforms' ) ) { return zeroBSCRM_extension_install_jetpackforms(); } return new WP_Error( 'jp_forms_extension_activation_failed', esc_html__( 'The Jetpack Forms extension could not be activated.', 'jetpack' ) ); } }
Close