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.227.46.54
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 /
pget /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxrwxr-x
pg
[ DIR ]
drwxrwxr-x
.DS_Store
8
KB
-rwxrwxr-x
MainPageCompressed.js
341.08
KB
-rwxrwxr-x
add-course.js
11.37
KB
-rwxrwxr-x
admin.js
15.25
KB
-rwxrwxr-x
advanced-form-elements.js
5.41
KB
-rwxrwxr-x
app-status.js
5.95
KB
-rwxrwxr-x
compressed.js
440.45
KB
-rwxrwxr-x
control.js
18.43
KB
-rwxrwxr-x
demo.js
3.33
KB
-rwxrwxr-x
forgot-password.js
3.24
KB
-rwxrwxr-x
form_submit.js
1.3
KB
-rwxrwxr-x
helpers.js
576
B
-rwxrwxr-x
kusPhdAdm.js
50.93
KB
-rwxrwxr-x
kusPhdAdm_03082019.js
45.47
KB
-rwxrwxr-x
kusPhdAdm_04122018.js
30.02
KB
-rwxrwxr-x
kusPhdAdm_12122018.js
45.47
KB
-rwxrwxr-x
kusPhdAdm_17092018.js
29.67
KB
-rwxrwxr-x
kusPhdAdm_23092018.js
29.74
KB
-rwxrwxr-x
login.js
478
B
-rwxrwxr-x
script.js
3
B
-rwxrwxr-x
sign-in.js
4.29
KB
-rwxrwxr-x
sign-up.js
4.52
KB
-rwxrwxr-x
upload.js
5.64
KB
-rwxrwxr-x
upload_18092018.js
5.52
KB
-rwxrwxr-x
validate.js
9.29
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sign-up.js
function validateRegno() { if(!$('#validateform').valid()){ return; } var parameters = `&mobile=${$('#idmobile').val()}`; $.ajax({ type: 'post', url: '../validateRegno.php', data: parameters, success: function(response) { var {status,result} = JSON.parse(response); if(status == 'invalid') { var { msg } = JSON.parse(response); swal({ title: msg, type: "warning", showCancelButton: false, confirmButtonColor: "#5495ff", confirmButtonText: "OK", closeOnConfirm: false }); } else if(status == 'success') { swal({ title: "OTP Sent to your mobile.", type: "success", showCancelButton: false, confirmButtonColor: "#5495ff", confirmButtonText: "OK", closeOnConfirm: false }); var { fname, femail } = result; $("#name").html( fname ); $("#fatname").html( femail ); $(".card1").css('margin-top', '0%'); $("#hrule").css('display', 'none'); $('#sign-up-scroll').slimScroll({ height: '650px' }); $('#perinfo').css('display', 'block'); $('#sendpasswd').css('display', 'none'); $('#sendotp').css('display', 'none'); $("#sendotpform").show();//sendotp } } }); } function validateInfo() { if(!$('#sendotpform').valid()){ return; } var parameters = `&mobile=${$('#idmobile').val()}&dob=${$('#dob').val()} &password=${$('#password').val()}`; $.ajax({ type: 'post', url: 'sendMobEmailOTP.php', data:parameters, success: function(response) { var {status, sms} = JSON.parse(response); if(sms == 'Sent.') { $("#sendotp").html('Re-Send OTP'); $('#mobile').attr('disabled', 'true'); $('#state').attr('disabled', 'true'); $('#univ').attr('disabled', 'true'); $('#dob').attr('disabled', 'true'); $('#password').attr('disabled', 'true');//cpassword $('#cpassword').attr('disabled', 'true'); } } }); } function signup() { if(!$('#sendotpform').valid()){ return; } var parameters = `&mobile=${$('#idmobile').val()}&dob=${$('#dob').val()} &password=${$('#password').val()}&motp=${$('#motp').val()}`; $.ajax({ type: 'post', url: 'signup.php', data:parameters, success: function(response) { var { status } = JSON.parse(response); if( status == 'success' ) { swal({ title: "You have registered successfully to Admission portal", text: "Click OK to continue", type: "success", showCancelButton: false, confirmButtonColor: "#5495ff", confirmButtonText: "OK", closeOnConfirm: false }, function () { window.location.href = 'index.html'; // signInWithSignup($('#idmobile').val(), $('#password').val()); }); } else { swal({ title: "Invalid OTP. Try resend OTP.", type: "warning", showCancelButton: false, confirmButtonColor: "#5495ff", confirmButtonText: "OK", closeOnConfirm: false }); $('#sendotp').css('display', 'block'); } } }); } function signInWithSignup(mobile,passwd) { var parameters = "&mobile="+mobile+"&passwd="+passwd.toUpperCase(); $.ajax({ type: 'post', url: 'signin.php', data:parameters, success: function(response) { if(response === 'invalid') { alert('Invalid Login'); } else { window.location.href = 'instruction.html'; } } }); }
Close