403Webshell
Server IP : 172.67.158.161  /  Your IP : 3.21.158.177
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/proc/self/cwd/wp-content/plugins/duplicator-pro/classes/environment/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/proc/self/cwd/wp-content/plugins/duplicator-pro/classes/environment/class.db.checker.php
<?php
defined('ABSPATH') or die("");

require_once ABSPATH.'/wp-admin/includes/upgrade.php';
require_once(DUPLICATOR_PRO_PLUGIN_PATH.'/classes/environment/interface.checker.php');

class DUP_PRO_DB_Checker implements DUP_PRO_iChecker
{

	public function __construct()
	{
		global $wpdb;
		$this->table			 = $wpdb->base_prefix."duplicator_pro_test_tmp_table";
		$this->results			 = array();
		$this->errors			 = array();
		$this->helper_messages	 = array();
	}

	public function dropTable()
	{
		try {
			global $wpdb;
			$table_name	 = $this->table;
			$sql		 = "DROP TABLE IF EXISTS `{$table_name}`;";
			$result		 = $wpdb->query($sql);
			return !$this->doesTableExist($table_name);
		} catch (Exception $e) {
			$this->errors['dropTable'][] = $e;
			return false;
		}
	}

	public function insert($args = array())
	{
		try {
			$table_name = $this->table;
			if (!$this->doesTableExist($table_name)) {
				return false;
			}

			global $wpdb;

			$defaults = array(
				'id' => '',
				'test_varchar' => 'nice duplicator pro',
				'test_int' => 234,
			);

			$args	 = wp_parse_args($args, $defaults);
			// $table_name =   $wpdb->prefix . "duplicator_pro_test_tmp_table";
			// remove row id to determine if new or update
			$row_id	 = (int) $args['id'];
			unset($args['id']);

			if (!$row_id) {
				// insert a new
				if ($wpdb->insert($table_name, $args)) {
					return $wpdb->insert_id;
				}
			} else {
				// do update method here
				if ($wpdb->update($table_name, $args, array('id' => $row_id))) {
					return $row_id;
				}
			}

			return false;
		} catch (Exception $e) {
			$this->errors['insert'][] = $e;
			return false;
		}
	}

	public function doesTableExist($table_name)
	{
		if (empty($table_name)) {
			return false;
		}
		global $wpdb;
		//https://developer.wordpress.org/reference/functions/maybe_create_table/
		// $query = $wpdb->prepare( "SHOW TABLES LIKE %s", $wpdb->esc_like( $table_name ) );
		try {
			// $result=$wpdb->get_var( $query );
			$query = "SHOW TABLES LIKE '$table_name'";
			if (strcasecmp($wpdb->get_var($query), $table_name) == 0) {
				return true;
			} else {
				return false;
			}
		} catch (Exception $e) {
			$this->errors['doesTableExist'][] = $e;
			return false;
		}
	}

	public function createTable()
	{
		try {
			global $wpdb;
			$table_name = $this->table;

			//PRIMARY KEY must have 2 spaces before for dbDelta to work
			$sql = "CREATE TABLE IF NOT EXISTS `{$table_name}` (
		   id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
		   test_varchar VARCHAR(250) NOT NULL,
		   test_int INT(11) NOT NULL,
		   PRIMARY KEY  (id))";

			dbDelta($sql);
			return $this->doesTableExist($table_name);
		} catch (Exception $e) {
			$this->errors['createTable'][] = $e;
			return false;
		}
	}

	public function check()
	{
		$created	 = $this->createTable();
		$inserted	 = $this->insert();
		$passed		 = $created && $inserted;

		// If can't drop the temp table that's ok since we don’t need that functionality in the plugin
		$this->dropTable();

		if (!$passed) {
			$user		 = '<b style="color:red;">'.DB_USER.'</b>';
			$db			 = '<b style="color:red;">'.DB_NAME.'</b>';
			$evaluation	 = '';
			if (!$created) {
				$evaluation = DUP_PRO_U::__("couldn't create table");
			}

			if (!$inserted) {
				if ($evaluation != '') {
					$evaluation .= ', ';
				}
				$evaluation .= DUP_PRO_U::__("couldn't insert data");
			}
			$this->helper_messages[] = sprintf(DUP_PRO_U::__('Duplicator Pro has been disabled due to insufficient database rights (%1$s). '
			. 'Please give database user %2$s full rights to database %3$s'), $evaluation, $user, $db);
		}

		return $passed;
	}

	public function getErrors()
	{
		return $this->errors;
	}

	public function getHelperMessages()
	{
		return $this->helper_messages;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit