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 | : 13.58.53.112
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_test /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
MainPage.js
27.06
KB
-rwxr-xr-x
MainPage2.js
6.92
KB
-rwxr-xr-x
admin.js
15.57
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
examtimetable.js
2.35
KB
-rwxr-xr-x
forgot-password.js
3.24
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
B
-rwxr-xr-x
sign-in.js
3.16
KB
-rwxr-xr-x
sign-up.js
11.1
KB
-rwxr-xr-x
sign-up07042018.js
8.84
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : registration.js
var universityResp; function loadmaster() { var email = getUrlParameter('email'); var mobile = getUrlParameter('mob'); var hash = getUrlParameter('hash'); var parameters = "&email="+email+"&mob="+mobile+"&hash="+hash; $.ajax({ type: 'post', url: 'validateEmail.php', data: parameters, success: function(response) { if(response == 'failure') { $("#signupform").css("display","none"); $("#signup_err").css("display","block"); } else { response = JSON.parse(response); //console.log(response.state); var opstate = "<option value=''>--SELECT--</option>"; for(var i=0;i<response.state.length;i++) { var state = response.state[i]; opstate += "<option value='"+state.fstate+"'>"+state.fstate+"</option>"; } $("#state").append(opstate) universityResp = response.university; } } }); } $("#state").change(function(){ var univ = this.value; var matchuniv = universityResp.filter(function(el){ return el.fstate == univ; }) var opstate = "<option value=''>--SELECT--</option>"; for(var i=0;i<matchuniv.length;i++) { var university = matchuniv[i]; opstate += "<option value='"+university.funivcode+"'>"+university.funivname+"</option>"; } $("#univ").html(opstate); }) var getUrlParameter = function getUrlParameter(sParam) { var sPageURL = decodeURIComponent(window.location.search.substring(1)), sURLVariables = sPageURL.split('&'), sParameterName, i; for (i = 0; i < sURLVariables.length; i++) { sParameterName = sURLVariables[i].split('='); if (sParameterName[0] === sParam) { return sParameterName[1] === undefined ? true : sParameterName[1]; } } }; function validateRegno() { var state = document.getElementById("state").value; var univ = document.getElementById("univ").value; var regno = document.getElementById("regno").value; var univcode = univ; if(state == '') { alert('Select State'); document.getElementById('state').focus(); return; } if(univ == '') { alert('Select University'); document.getElementById('univ').focus(); return; } if(!$('#validateForm').valid()){ return; } var parameters = "®no="+regno+"&univcode="+univcode; $.ajax({ type: 'post', url: 'validateRegno.php', data: parameters, success: function(response) { response = eval('(' + response + ')'); if(response.status == 'success') { $('#validateForm').hide(); $("#name").html(response.fname); $("#fatname").html(response.ffather); var category = response.category; /*var opcat = "<option value=''>--SELECT--</option>"; for(var i=0;i<category.length;i++) { var cat = category[i]; opcat += "<option value='"+cat.fcategory+"'>"+cat.fdescpn+"</option>"; } $("#category").append(opcat);*/ $("#perdet").css('display','block'); $("#perdeterr").css('display','none'); } else { $("#perdeterr").html("You are not registered to any of our Universities"); $("#perdeterr").css('display','block'); $("#perdet").css('display','none'); } } }); } function register() { var email = getUrlParameter('email'); var mobile = getUrlParameter('mob'); var state = document.getElementById("state").value; var univ = document.getElementById("univ").value; var regno = document.getElementById("regno").value; var cpasswd = document.getElementById("cpassword").value; var passwd = document.getElementById("password").value; var univcode = univ; if( cpasswd !== passwd) { alert("you have confirmed the wrong password"); document.getElementById('cpassword').focus(); return; } if( cpasswd.length < 8) { alert("password should be greater than 8 charecters"); document.getElementById('password').focus(); return; } var parameters = "®no="+regno+"&univcode="+univcode+"&passwd="+cpasswd.toUpperCase() +"&mob="+mobile+"&email="+email; $.ajax({ type: 'post', url: 'registration.php', data: parameters, success: function(response) { if(response == 'success') { window.location.href = "index.html"; } else { } } }); }
Close