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.12.34.211
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 /
studentportal_wait /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
MainPage.js
52.74
KB
-rwxr-xr-x
MainPage2.js
49.35
KB
-rwxr-xr-x
OnlineApp.js
758
B
-rwxr-xr-x
admin.js
15.54
KB
-rwxr-xr-x
advanced-form-elements.js
5.41
KB
-rwxr-xr-x
appRefund.js
7.75
KB
-rwxr-xr-x
chartjs.js
3.9
KB
-rwxr-xr-x
compressed.js
440.45
KB
-rwxr-xr-x
demo.js
3.53
KB
-rwxr-xr-x
examApp.js
23.21
KB
-rwxr-xr-x
examtimetable.js
2.35
KB
-rwxr-xr-x
forgot-password.js
3.24
KB
-rwxr-xr-x
form_submit.js
1.3
KB
-rwxr-xr-x
helpers.js
576
B
-rwxr-xr-x
iamarks.js
2.67
KB
-rwxr-xr-x
registration.js
4.88
KB
-rwxr-xr-x
script.js
3.28
KB
-rwxr-xr-x
sign-in.js
4.01
KB
-rwxr-xr-x
sign-up.js
10.38
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : iamarks.js
function getIaMarks() { var config = null; var FCSUBCODE; var conducted; var attended; var percent; var parameters = "&screen=iamarks"; var fname, fexamname, fregno, fexamdate, fdegree, fvalmax; $.blockUI({ message: "<img src='images/Loading_icon.gif' border='0'>" }); $.ajax({ type: 'post', url: 'src/iamarks.php', data:parameters, success: function(response) { $.unblockUI(); response = JSON.parse(response); if(response.error_code == 0) { swal({ title: response.data, type: "warning", showCancelButton: false, confirmButtonColor: "#5495ff", confirmButtonText: "OK", closeOnConfirm: false }, function(isConfirm){ if(isConfirm) swal.close(); loadProfile(); $("#profile").addClass("active"); $("#IaMarksMenu").removeClass("active"); }); }else { fcsubcode = response.fcsubcode; fsubname = response.fsubname; fvalmax = response.fvalmax; fmarks = response.fmarks; ({ fname, fexamname, fregno, fexamdate, fdegree } = response); $("#idIAMarksHeader").html(`<h2><center> ${ fexamdate } IA Marks </center></h2>`) /*$("#studinfo").append(`<tr><td width='20%'><b>Reg. No. </td><td> : ${fregno} </b></td></tr><tr><td width='20%'><b>Student Name </td><td> : ${fname} </b></td></tr><tr><td width='20%'><b>Degree </td><td> : ${ fdegree }</b></td></tr> <tr><td width='20%'><b>Semester </td><td> : ${ fexamname + " - " +fexamdate }</b></td></tr>`); */ var table = `<table class="m-b-20 table table-condensed table-bordered table-striped table-hover"> <tr><th style = "width:8%;"><center>Sl. No.</center></th> <th style = "width:10%;" ><center>Subject Code</center></th> <th><center>Subject Name</center></th> <th style = "width:8%;"><center>Max. Marks</center></th> <th style = "width:8%;"><center>Marks</center></th>`; for(let i in fcsubcode) { table += `<tr style = "height:30px;"><td><center>${parseInt(i)+1}</center></td> <td><center>${fcsubcode[i]}</center></td> <td>${fsubname[i]}</td> <td><center>${fvalmax[i]}</center></td> <td><center>${fmarks[i]}</center></td></tr>`; } table += `</table>`; $('#ia_table_det').html(table); } } }); }
Close