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.217.217.99
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 /
misc /
others /
[ HOME SHELL ]
Name
Size
Permission
Action
ExampleMatomoTracker.php
674
B
-rw-r--r--
ExamplePiwikTracker.php
648
B
-rw-r--r--
geoipUpdateRows.php
304
B
-rw-r--r--
tracker_simpleImageTracker.php
1.03
KB
-rw-r--r--
uninstall-delete-matomo-direct...
1.21
KB
-rw-r--r--
uninstall-delete-piwik-directo...
1.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : uninstall-delete-piwik-directory.php
<?php exit; // Remove this line before using the script // How to remove the piwik/ directory if it does not work in FTP? // 1) Download and upload this file to your webserver // 2) Remove the 2nd line (the "exit;") // 3) Put this file in the folder that contains the piwik/ directory (above the piwik/ directory) // For example if the piwik/ folder is at http://your-site/piwik/ you put the file in http://your-site/uninstall-delete-piwik-directory.php // 4) Go with your browser to http://your-site/uninstall-delete-piwik-directory.php // 5) The folder http://your-site/piwik/ should now be deleted! // We hope you enjoyed Piwik. If you have any feedback why you stopped using Piwik, // please let us know at hello@matomo.org - we are interested by your experience function unlinkRecursive($dir) { if (!$dh = @opendir($dir)) return "Warning: folder $dir couldn't be read by PHP"; while (false !== ($obj = readdir($dh))) { if ($obj == '.' || $obj == '..') { continue; } if (!@unlink($dir . '/' . $obj)) { unlinkRecursive($dir . '/' . $obj, true); } } closedir($dh); @rmdir($dir); return "Folder $dir deleted!"; } echo unlinkRecursive('piwik/');
Close