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 | : 52.14.125.137
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 /
oasis /
custom_src /
[ HOME SHELL ]
Name
Size
Permission
Action
TarkaFormatStyles.php
10.35
KB
-rwxr-xr-x
batch_wise_details.php
14.36
KB
-rwxr-xr-x
custom_mregistry.php
3.6
KB
-rwxr-xr-x
dash_board.php
1.39
KB
-rwxr-xr-x
error_log.php
749
B
-rwxr-xr-x
error_message.ini
2.73
KB
-rwxr-xr-x
evaluation.php
15.84
KB
-rwxr-xr-x
execute_query.php
754
B
-rwxr-xr-x
freeze_marks.php
4.7
KB
-rwxr-xr-x
getMapAtEmployeeIdQuery.php
4.24
KB
-rwxr-xr-x
getRightValuesForLoggedinUser....
2.26
KB
-rwxr-xr-x
get_fm_emp_list.php
3.19
KB
-rwxr-xr-x
get_search_conditon.php
2.03
KB
-rwxr-xr-x
ggridGetQuery.php
1.55
KB
-rwxr-xr-x
month_year.php
2.59
KB
-rwxr-xr-x
parseini.php
777
B
-rwxr-xr-x
practical_entry_freezing witho...
9.3
KB
-rwxr-xr-x
practical_entry_freezing.php
22.62
KB
-rwxr-xr-x
practical_entry_freezing_new.p...
9.53
KB
-rw-r--r--
practical_marks_details.php
14.81
KB
-rwxr-xr-x
practical_marks_misc.php
10.02
KB
-rwxr-xr-x
report_practical_misc.php
5.76
KB
-rwxr-xr-x
report_setup.php
86.43
KB
-rwxr-xr-x
transactions.php
50.14
KB
-rwxr-xr-x
user_report.php
6.21
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dash_board.php
<?php class dash { public $internal_code; function __construct($aobj_context) { session_start(); $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $this->aobj_context=$aobj_context; $this->user_id = $_SESSION['user_id']; $this->user_type = $_SESSION['user_type']; $this->collcode = $_SESSION['collcode']; } function dashboardMessageBoard() { $get_all_message="select ifnull(college_code,0) as college_code, message from message_board where current_date() between display_from and display_to and college_code in('1','0','{$this->collcode}')"; $lobj_get_all_message = $this->aobj_context->mobj_db->GetAll($get_all_message); foreach($lobj_get_all_message as $k=>$v) { if( empty($v['college_code']) or $v['college_code']=='0' ) { $this->univ_data=$v['message']; } else $this->college_data=$v['message']; } if(empty($this->univ_data)) { $this->univ_data="<br><b>Welcome to Examination Automation.</b><br> <br><p justify></p>"; } } } function GetDashboardDetails($aobj_context) { $dash_obj=new dash($aobj_context); $dash_obj->dashboardMessageBoard(); $arr['univ_data']=$dash_obj->univ_data; $arr['college_data']=$dash_obj->college_data; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); } ?>
Close