Agent Siba

User: www-data Host: 18th-ph-latest OS: Linux PHP: 8.2.28 SAPI: apache2handler
// var/www/html/wp-admin..
<?php /** * Server-side file upload handler from wp-plupload or other asynchronous upload methods. * * @package WordPress * @subpackage Administration */ if ( isset( $_REQUEST['action'] ) && 'upload-attachment' === $_REQUEST['action'] ) { define( 'DOING_AJAX', true ); } if ( ! defined( 'WP_ADMIN' ) ) { define( 'WP_ADMIN', true ); } /** Load WordPress Bootstrap */ require_once dirname( __DIR__ ) . '/wp-load.php'; require_once ABSPATH . 'wp-admin/admin.php'; header( 'Content-Type: text/plain; charset=' . get_option( 'blog_charset' ) ); if ( isset( $_REQUEST['action'] ) && 'upload-attachment' === $_REQUEST['action'] ) { require ABSPATH . 'wp-admin/includes/ajax-actions.php'; send_nosniff_header(); nocache_headers(); wp_ajax_upload_attachment(); die( '0' ); } if ( ! current_user_can( 'upload_files' ) ) { wp_die( __( 'Sorry, you are not allowed to upload files.' ) ); } // Just fetch the detail form for that attachment. if ( isset( $_REQUEST['attachment_id'] ) && (int) $_REQUEST['attachment_id'] && $_REQUEST['fetch'] ) { $id = (int) $_REQUEST['attachment_id']; $post = get_post( $id ); if ( 'attachment' !== $post->post_type ) { wp_die( __( 'Invalid post type.' ) ); } switch ( $_REQUEST['fetch'] ) { case 3: ?> <div class="media-item-wrapper"> <div class="attachment-details"> <?php $thumb_url = wp_get_attachment_image_src( $id, 'thumbnail', true ); if ( $thumb_url ) { echo '<img class="pinkynail" src="' . esc_url( $thumb_url[0] ) . '" alt="" />'; } // Title shouldn't ever be empty, but use filename just in case. $file = get_attached_file( $post->ID ); $file_url = wp_get_attachment_url( $post->ID ); $title = $post->post_title ? $post->post_title : wp_basename( $file ); ?> <div class="filename new"> <span class="media-list-title word-wrap-break-word"><strong><?php echo esc_html( wp_html_excerpt( $title, 60, '&hellip;' ) ); ?></strong></span> <span class="media-list-subtitle word-wrap-break-word"><?php echo esc_html( wp_basename( $file ) ); ?></span> <div class="attachment-tools"> <?php if ( current_user_can( 'edit_post', $id ) ) { echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '">' . _x( 'Edit', 'media item' ) . '</a>'; } else { echo '<span class="edit-attachment">' . _x( 'Success', 'media item' ) . '</span>'; } ?> <span class="media-item-copy-container copy-to-clipboard-container edit-attachment"> <button type="button" class="button button-small copy-attachment-url" data-clipboard-text="<?php echo esc_url( $file_url ); ?>" ><?php _e( 'Copy URL to clipboard' ); ?></button> <span class="success hidden" aria-hidden="true"><?php _e( 'Copied!' ); ?></span> </span> </div> </div> </div> </div> <?php break; case 2: add_filter( 'attachment_fields_to_edit', 'media_single_attachment_fields_to_edit', 10, 2 ); echo get_media_item( $id, array( 'send' => false, 'delete' => true, ) ); break; default: add_filter( 'attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit', 10, 2 ); echo get_media_item( $id ); break; } exit; } check_admin_referer( 'media-form' ); $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; } } $id = media_handle_upload( 'async-upload', $post_id ); if ( is_wp_error( $id ) ) { $button_unique_id = uniqid( 'dismiss-' ); $error_description_id = uniqid( 'error-description-' ); $message = sprintf( '%s <strong>%s</strong><br />%s', sprintf( '<button type="button" id="%1$s" class="dismiss button-link" aria-describedby="%2$s">%3$s</button>', esc_attr( $button_unique_id ), esc_attr( $error_description_id ), __( 'Dismiss' ) ), sprintf( /* translators: %s: Name of the file that failed to upload. */ __( '&#8220;%s&#8221; has failed to upload.' ), esc_html( $_FILES['async-upload']['name'] ) ), esc_html( $id->get_error_message() ) ); wp_admin_notice( $message, array( 'id' => $error_description_id, 'additional_classes' => array( 'error-div', 'error' ), 'paragraph_wrap' => false, ) ); $speak_message = sprintf( /* translators: %s: Name of the file that failed to upload. */ __( '%s has failed to upload.' ), $_FILES['async-upload']['name'] ); echo '<script>_.delay(function() {wp.a11y.speak(' . wp_json_encode( $speak_message, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) . ");}, 1500);jQuery( 'button#{$button_unique_id}' ).on( 'click', function() {jQuery(this).parents('div.media-item').slideUp(200, function(){jQuery(this).remove();wp.a11y.speak( wp.i18n.__( 'Error dismissed.' ) );jQuery( '#plupload-browse-button' ).trigger( 'focus' );})});</script>\n"; exit; } if ( $_REQUEST['short'] ) { // Short form response - attachment ID only. echo $id; } else { // Long form response - big chunk of HTML. $type = $_REQUEST['type']; /** * Filters the returned ID of an uploaded attachment. * * The dynamic portion of the hook name, `$type`, refers to the attachment type. * * Possible hook names include: * * - `async_upload_audio` * - `async_upload_file` * - `async_upload_image` * - `async_upload_video` * * @since 2.5.0 * * @param int $id Uploaded attachment ID. */ echo apply_filters( "async_upload_{$type}", $id ); }
Name Size Perms Owner Modified Actions
../ - rwxr-xr-x 33:33 2026-07-24 22:53 Del
css/ - rwxrwxr-x 33:33 2025-06-30 11:28 Del
images/ - rwxrwxr-x 33:33 2026-07-24 08:25 Del
includes/ - rwxrwxr-x 33:33 2026-07-24 08:13 Del
js/ - rwxrwxr-x 33:33 2025-06-30 11:28 Del
maint/ - rwxrwxr-x 33:33 2025-06-30 11:26 Del
network/ - rwxrwxr-x 33:33 2025-06-30 11:24 Del
user/ - rwxrwxr-x 33:33 2025-06-30 11:26 Del
about.php 17.74 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
admin-ajax.php 5.03 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
admin-footer.php 2.77 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
async-upload.php 5.47 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
comment.php 11.35 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
contribute.php 5.86 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
credits.php 4.38 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
custom-background.php 489 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
custom-header.php 499 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
edit-comments.php 14.38 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
edit-form-advanced.php 28.83 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
edit-form-blocks.php 14.6 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
edit-form-comment.php 8.34 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
edit-link-form.php 6.21 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
edit-tag-form.php 10.44 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
edit-tags.php 22 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
edit.php 19.48 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
erase-personal-data.php 7.33 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
export-personal-data.php 7.75 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
freedoms.php 4.8 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
import.php 7.58 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
index.php 7.68 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
install-helper.php 6.8 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
link-add.php 934 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
link-manager.php 4.26 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
link-parse-opml.php 2.72 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
link.php 2.89 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
load-styles.php 2.92 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
media-new.php 3.2 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
media-upload.php 3.58 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
media.php 819 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
menu-header.php 9.82 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
menu.php 17.46 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
moderation.php 307 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
ms-admin.php 196 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
ms-delete-site.php 4.5 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
ms-edit.php 216 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
ms-options.php 229 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
ms-sites.php 215 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
ms-themes.php 217 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
ms-upgrade-network.php 219 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
ms-users.php 215 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
my-sites.php 4.74 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
nav-menus.php 48.19 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
network.php 5.39 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
options-discussion.php 15.92 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
options-general.php 21.65 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
options-head.php 621 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
options-media.php 6.38 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
options-privacy.php 9.95 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
options-reading.php 9.94 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
options-writing.php 9.1 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
options.php 13.6 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
post-new.php 2.7 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
post.php 10.03 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
press-this.php 2.34 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
privacy-policy-guide.php 3.67 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
privacy.php 2.79 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
profile.php 283 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
revision.php 5.7 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
setup-config.php 17.48 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
site-editor.php 11.98 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
site-health-info.php 3.99 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
site-health.php 10.2 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
term.php 2.2 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
themes.php 47.92 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
update-core.php 45.45 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
upgrade-functions.php 341 B rw-rw-r-- 33:33 2025-06-30 11:24 View Del
upgrade.php 6.27 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
upload.php 14.9 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
user-edit.php 40.36 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
user-new.php 24.05 KB rw-rw-r-- 33:33 2025-06-30 11:24 View Del
users.php 23.29 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
widgets-form-blocks.php 5.12 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
widgets-form.php 19.29 KB rw-rw-r-- 33:33 2026-03-15 16:56 View Del
0