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.137.176.238
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 /
PrathibhaKaranji_stop /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
pg
[ DIR ]
drwxr-xr-x
.DS_Store
7.99
KB
-rwxr-xr-x
MainPageCompressed.js
341.08
KB
-rwxr-xr-x
admin.js
15.25
KB
-rwxr-xr-x
advanced-form-elements.js
5.53
KB
-rwxr-xr-x
bcuregn.js
6.94
KB
-rwxr-xr-x
compressed.js
440.45
KB
-rwxr-xr-x
control.js
18.43
KB
-rwxr-xr-x
demo.js
3.33
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
kusPhdAdm.js
21.78
KB
-rwxr-xr-x
kusPhdAdm_24092018.js
29.74
KB
-rwxr-xr-x
login.js
478
B
-rwxr-xr-x
photoCrop.js
1.91
KB
-rwxr-xr-x
script.js
3
B
-rwxr-xr-x
sign-in.js
4.29
KB
-rwxr-xr-x
sign-up.js
3.65
KB
-rwxr-xr-x
upload.js
5.54
KB
-rwxr-xr-x
validate.js
9.29
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : forgot-password.js
var fewSeconds = 30; $('#btn_recover').click(function(){ // Ajax request var btn = $(this); btn.prop('disabled', true); setTimeout(function(){ btn.prop('disabled', false); }, fewSeconds*1000); }); function recover() { if(!$('#forgot_password_Email').valid()){ return; } var mobile = $("#mobile").val(); var parameters = "&mobile="+mobile; $.ajax({ type: 'post', url: 'forgot-password.php', data:parameters, success: function(response) { var {status, femail, msg} = JSON.parse(response); if(status === 'success') { swal({ title: msg, type: "success", showCancelButton: false, confirmButtonColor: "#5495ff", confirmButtonText: "OK", closeOnConfirm: true }); $("#btn_recover").html("Resend-OTP"); return; } else { swal({ title: msg, type: "warning", showCancelButton: false, confirmButtonColor: "#5495ff", confirmButtonText: "OK", closeOnConfirm: true }); $("#confirm").html(msg); return; } } }); } function resetPasswd() { if(!$('#resetpasswordform').valid()){ return; } var parameters = `&mobile=${$('#mobile').val()}&otp=${$('#motp').val()} &password=${$('#cpassword').val()}`; $.ajax({ type: 'post', url: 'resetpassword.php', data:parameters, success: function(response) { var {status} = JSON.parse(response); if(status === 'success') { swal({ title: "password reset successful", type: "success", showCancelButton: false, confirmButtonColor: "#5495ff", confirmButtonText: "OK", closeOnConfirm: false }, function(){ window.location.href = 'index.html'; }); } else { swal({ title: "Invalid OTP", type: "warning", showCancelButton: false, confirmButtonColor: "#5495ff", confirmButtonText: "OK", closeOnConfirm: true }); } } }); } $('#resetpasswordform').validate({ rules: { 'terms': { required: true }, 'confirm': { equalTo: '[name="password"]' }, }, highlight: function (input) { $(input).parents('.form-line').addClass('error'); }, unhighlight: function (input) { $(input).parents('.form-line').removeClass('error'); }, errorPlacement: function (error, element) { $(element).parents('.inner-addon').append(error).find("label").css("color", "red"); } }); $('input[type=password]').tooltip({ placement: "top", trigger: "focus" });
Close