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.133.157.220
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_tobedeleted /
adm /
adm_admin /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
pages
[ DIR ]
drwxr-xr-x
MainPage.js
23
KB
-rwxr-xr-x
MainPage2.js
1005
B
-rwxr-xr-x
admin.js
15.51
KB
-rwxr-xr-x
demo.js
3.32
KB
-rwxr-xr-x
forgot-password.js
520
B
-rwxr-xr-x
helpers.js
576
B
-rwxr-xr-x
registration.js
5.97
KB
-rwxr-xr-x
script.js
3
B
-rwxr-xr-x
sendMail.php
839
B
-rwxr-xr-x
sign-in.js
1.07
KB
-rwxr-xr-x
sign-up.js
2.83
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sign-up.js
/*$(function () { $('#sign_up').validate({ rules: { 'terms': { required: true }, 'confirm': { equalTo: '[name="password"]' } }, highlight: function (input) { console.log(input); $(input).parents('.form-line').addClass('error'); }, unhighlight: function (input) { $(input).parents('.form-line').removeClass('error'); }, errorPlacement: function (error, element) { $(element).parents('.input-group').append(error); $(element).parents('.form-group').append(error); } }); });*/ var mobile; var regno; function sendpassword() { if(!$('#otpform').valid()){ console.log('invalid'); return; } mobile = document.getElementById("mobile").value; $("#otpmsg").append('<img src="loding.gif" height="40" width="40"> SENDING OTP'); var parameters = "&mobile="+mobile+"®no="+regno; $.ajax({ type: 'post', url: 'sendotp.php', data:parameters, success: showOtpStatus }); } function showOtpStatus(response) { $("#otpmsg").html(""); response = $.trim(response); if(response == 'sent') { $("#otpmsg").append("OTP SENT"); $("#sendpasswd").html('Re-Send OTP'); } else { $("#otpmsg").html(response); $("#sendpasswd").html('Re-Send OTP'); } } function signup() { if(!$('#otpform').valid()){ console.log('invalid'); return; } var emailid = document.getElementById("email").value; var mobile = document.getElementById("mobile").value; var motp = document.getElementById("motp").value; var parameters = "&mobile="+mobile+"&email="+emailid +"&motp="+motp; $("#confirm").append('<img src="loding.gif" height="40" width="40"> Confirming'); $.ajax({ type: 'post', url: 'signup.php', data:parameters, success: showPassword }); } function showPassword(response) { if(response == "inserted") { $("#confirm").html("Check your Email For Registeration"); } else { $("#confirm").html(response); } } function loadmaster() { $("#success").hide(); } function sendEmail() { var emailid = document.getElementById("email").value; var parameters = "&email="+emailid+"®no="+regno; $.ajax({ type: 'post', url: 'sendEmail.php', data:parameters, success: function(response) { if(response == 'inserted') { $("#email").prop('disabled', true); $("#sendemailbtn").prop('disabled', true); $("#msg").html('signup was successfull check your email inbox'); } } }); }
Close