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.165.235
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 /
kusdde /
adm2018 /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
i18n
[ DIR ]
drwxr-xr-x
out
[ DIR ]
drwxr-xr-x
pages
[ DIR ]
drwxr-xr-x
MainPage.js
41.28
KB
-rwxr-xr-x
MainPage_11102018.js
40.67
KB
-rwxr-xr-x
MainPage_21022018.js
38.81
KB
-rwxr-xr-x
MainPage_25012019.js
40.7
KB
-rwxr-xr-x
MainPage_27042018.js
39.3
KB
-rwxr-xr-x
MainPage_mohan.js
38.83
KB
-rwxr-xr-x
Registrationpage.js
2.01
KB
-rwxr-xr-x
Registrationpage_25012019.js
2.02
KB
-rwxr-xr-x
admin.js
15.25
KB
-rwxr-xr-x
appForm.js
13.62
KB
-rwxr-xr-x
appStatus.js
4.09
KB
-rwxr-xr-x
changeCntr.js
5.81
KB
-rwxr-xr-x
control.js
18.43
KB
-rwxr-xr-x
demo.js
3.32
KB
-rwxr-xr-x
form_submit.js
1.3
KB
-rwxr-xr-x
helpers.js
576
B
-rwxr-xr-x
login.js
1.11
KB
-rwxr-xr-x
masonry.min.js
23.6
KB
-rwxr-xr-x
masonry.pkgd.min.js
23.6
KB
-rwxr-xr-x
printCor.html
29
B
-rwxr-xr-x
printCor.js
0
B
-rwxr-xr-x
script.js
3
B
-rwxr-xr-x
validate.js
9.29
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : changeCntr.js
const loadChangeCntr = () => { $("#loadtab").load("html_modules/changeCntr.html", () => { $("#shwTbl").hide(); $("#err").hide(); }); }; var FAPPNO = ""; const getStudDet = () => { var degfrm = $("#fromdeg").val(); var degto = $("#todeg").val(); var appfrm = $("#fromapp").val(); var appto = $("#toapp").val(); var collfrm = $("#fromcoll").val(); var collto = $("#tocoll").val(); var examno = $("#exmno").val(); console.log({ degfrm, degto, appfrm, appto, collfrm, collto, examno }); parameters = `°frm=` + degfrm + `°to=` + degto + `&appfrm=` + appfrm + `&appto=` + appto + `&collfrom=` + collfrm + `&collto=` + collto + `&examno=` + examno; $.blockUI({ message: "<img src='img/Loading_icon.gif' border='0'>" }); $.ajax({ type: "POST", url: $host_url + "getStudDet", data: parameters, success: response => { // console.log(JSON.parse(response)); $.unblockUI(); var { status, error_code, data } = JSON.parse(response); if (error_code == 0) { // console.log("if", data); $("#shwTbl").show(); var html = `<div class='row'> <div class=' col-lg-offset-1 col-lg-10'> <table id='mainTable' class='mainTable m_b_10 table table-striped table-condensed table-bordered'> <thead> <tr class='bg-cyan'> <th style='width:5%;' class="text-center">Sl. No.</th> <th style='width:8%;' class="text-center">Name</th> <th style='width:7%;' class="text-center">Degree Code</th> <th style='width:32%;' class="text-center">Degree Name</th> <th style='width:15%;' class="text-center">Application/ Reg. No.</th> <th style='width:10%;' class="text-center">Exam Name</th> <th style='width:8%;' class="text-center">Old Center Code</th> <th style='width:15%;' class="text-center">New Center Code</th> </tr> </thead > <tbody>`; data.forEach((el, i) => { html += `<tr class="tblRow"> <input type="hidden" value="F" id="${i}" name="updCntr"> <td class="text-center">${i + 1}</td> <td id="name${i}">${el.fname}</td> <td class="text-center" id="deg${i}">${el.fdegree}</td> <td>${el.fdescpn}</td> <td class="text-center" id="appno${i}">${el.id}</td> <td>${el.fexamno} - ${el.fexamname}</td> <input id="exmno${i}" type="hidden" value='${el.fexamno}' /> <td id="oldCntr${i}">${el.fcollcode}</td> <td class="text-right"> <div class="form-line no_margin"> <input id="newCntr${i}" onchange="getNewCntr(${i},${ el.fappno })" maxlength="4" value='' type="text" class="form-control" onkeypress="return acceptNumbersOnlyForModule(event);"> </div> </td> </tr>`; }); html += `</tbody></table></div></div> <div class="row clearfix"> <div class="col-lg-offset-5 col-md-offset-3 col-sm-offset-4 col-xs-offset-5" > <button class="btn btn-primary waves-effect m_b_10" id="getDetbtn" onclick="updateCntrDet()" > Update </button> </div> </div>`; $("#shwTbl").html(html); } if (error_code == 1) { console.log(data); alert("No Data Found"); } } }); }; var newCntrArr = Array(); const getNewCntr = (idx, fappno) => { console.log("qwert", fappno); document.getElementById(idx).value = "U"; FAPPNO = fappno; }; const updateCntrDet = async () => { newCntrArr.length = 0; console.log("up ", FAPPNO, newCntrArr); $("#mainTable tr").map((i, el) => { if ($("#" + i).val() == "U") { var fdegree = $("#deg" + i).text(); var newCntr = $("#newCntr" + i).val(); var fappno = $("#appno" + i).text(); var fexmno = $("#exmno" + i).val(); if (fexmno == "A") { $("#ReportBtn").hide(); } newCntrArr.push({ fdegree: fdegree, fregno: fappno, fnewcollcode: newCntr, fexmno: fexmno, fappno: `${FAPPNO}` }); console.log("arrrr", newCntrArr); } }); console.log({ newCntrArr }); await $.ajax({ type: "POST", url: $host_url + "updateNewCntrDet", data: "newCntr=" + JSON.stringify(newCntrArr), success: response => { var { status, error_code, data } = JSON.parse(response); if (error_code == 0) { alert("Centers Updated Successfully"); var html = `<button class="btn btn-primary waves-effect m_b_10" id="reportbtn" onclick="changeCntrReport()" > Report </button>`; var msg = `<p>Get Report For Updated Records here</p>`; $("#ReportBtn").html(html); // $("#Msghere").html(msg); $("#shwTbl").hide(); } if (error_code == 1) { alert( "Not Updated successfully, please check the details enteredTry again later" ); $("#shwTbl").hide(); } } }); }; const changeCntrReport = () => { console.log( newCntrArr, $host_url + "cntrChangeDet&newCntr=" + encodeURIComponent(JSON.stringify(newCntrArr)) + "&rtype=U" ); window.location.href = $host_url + "cntrChangeDet&newCntr=" + encodeURIComponent(JSON.stringify(newCntrArr)) + "&rtype=U"; }; const getReport = () => { console.log("getReport"); var examno = $("#exmno").val(); console.log("eee", examno); if (examno == "A") { $("#err").show(); return; } else $("#err").hide(); var regfrm = $("#regfrm").val(); var regto = $("#regto").val(); window.location.href = $host_url + "cntrChangeDet®frm=" + regfrm + "®to=" + regto + "°frm=" + "&rtype=L"; };
Close