Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.129.210.35
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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 /
ifk /
web /
prado4.3.2 /
Shell /
Actions /
[ HOME SHELL ]
Name
Size
Permission
Action
TActiveRecordAction.php
8
KB
-rw-r--r--
TDbParameterAction.php
4.98
KB
-rw-r--r--
TFlushCachesAction.php
3.47
KB
-rw-r--r--
THelpAction.php
1.34
KB
-rw-r--r--
TPhpShellAction.php
1.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : THelpAction.php
<?php /** * THelpAction class file * * @author Brad Anderson <belisoful@icloud.com> * @link https://github.com/pradosoft/prado * @license https://github.com/pradosoft/prado/blob/master/LICENSE */ namespace Prado\Shell\Actions; use Prado\Prado; use Prado\Shell\TShellAction; /** * THelpAction class. * * The help for a specific command. * * @author Brad Anderson <belisoful[at]icloud[dot]com> * @since 4.2.0 */ class THelpAction extends TShellAction { protected $action = 'help'; protected $methods = ['index']; protected $parameters = [null]; protected $optional = ['command']; protected $description = [ 'Provides help information about shell commands.', 'Displays available commands or detailed command information.']; /** * displays help for a specific command or the general help * @param array $args parameters * @return bool is the action handled */ public function actionIndex($args) { if (isset($args[1])) { foreach ($this->getApplication()->getShellActions() as $action) { $cmdname = $action->getAction(); if (0 === strncasecmp($cmdname, $args[1], strlen($cmdname))) { $action->setWriter($this->getWriter()); $action->renderHelpCommand($args[1]); return true; } } } else { $app = $this->getApplication(); $app->printHelp($this->getWriter()); return true; } return false; } }
Close