Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.12.151.11
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/thread-self/root/var/softaculous/sitepad/editor/site-data/plugins/sitepad/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/thread-self/root/var/softaculous/sitepad/editor/site-data/plugins/sitepad/ajax.php
<?php

// We need the ABSPATH
if (!defined('ABSPATH')) exit;

// Handle AJAX functions

// Is the nonce there ?
if(empty($_REQUEST['sitepad_nonce'])){
	return;
}

// Switch Language
add_action( 'wp_ajax_change_lang', 'change_lang' );
//add_action( 'wp_ajax_nopriv_change_lang', 'change_lang' );
function change_lang() {
	
	// Some AJAX security
	check_ajax_referer('sitepad_ajax', 'sitepad_nonce');
	
	if(!is_super_admin()){
		die();
	}
	
	$lang = optGET('sitepad_lang');
	update_option('WPLANG', $lang );
	// Switch translation in case WPLANG was changed.
	$language = get_option( 'WPLANG' );
	if ( $language ) {
		load_default_textdomain( $language );
	} else {
		unload_textdomain( 'default' );
	}
	
	// Update the language preference for SitePad editor
	die('done'); // this is required to terminate immediately as this is just an ajax call

}

// The ajax handler
add_action('wp_ajax_sitepad_save_screenshot', 'sitepad_save_screenshot');
function sitepad_save_screenshot(){

	global $sitepad;

	// Some AJAX security
	check_ajax_referer('sitepad_ajax', 'sitepad_nonce');
	
	$postID = optREQ('postID');
	$post_name = $_POST['post_name'];
	$data = $_POST['image'];
	$data = substr($data, strpos($data, ',') + 1);
	$data = base64_decode($data);
	
	// Make sure the dir exists
	mkdir($sitepad['screenshots_path'], 0755, true);
	
	// Save an upload
	file_put_contents($sitepad['screenshots_path'].'/'.$post_name.'.jpg', $data);
	
	echo '{done:'.$postID.'}';
	die();
	
}

add_action( 'wp_ajax_sitepad_reset_site', 'sitepad_reset_site' );
function sitepad_reset_site(){
	
	global $wpdb, $wp_rewrite, $pagelayer;

	// Some AJAX security
	check_ajax_referer('sitepad_ajax', 'sitepad_nonce');
	
	if(!current_user_can( 'manage_options' )){
		wp_send_json(array('error' => 'You do not have permission to reset site !'));
	}

	$reset_todo = optGET('reset_todo');
	
	if(empty($reset_todo) || !in_array($reset_todo, array('pages', 'posts', 'all'))){
		wp_send_json(array('error' => 'Invalid reset action'));
	}
	
	// Reset the site
	$ret = sitepad_reset_site_fn($reset_todo);
	
	if($ret){
		wp_send_json(array('done' => 1));
	}else{
		wp_send_json(array('error' => 'An unexpected error occured'));
	}	
	
}

Youez - 2016 - github.com/yon3zu
LinuXploit