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.149.29.209
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 /
oasis /
aiet /
adm /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
MainPageCompressed.js
341.08
KB
-rwxr-xr-x
admin.js
15.25
KB
-rwxr-xr-x
advanced-form-elements.js
5.41
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
63.8
KB
-rwxr-xr-x
kusPhdAdm_19082019.js
45.44
KB
-rwxr-xr-x
kusPhdAdm_24092018.js
29.74
KB
-rwxr-xr-x
kusPhdAdm_29122018.js
45.47
KB
-rwxr-xr-x
login.js
478
B
-rwxr-xr-x
script.js
3
B
-rwxr-xr-x
sign-in.js
4.29
KB
-rwxr-xr-x
sign-up.js
6.24
KB
-rwxr-xr-x
upload.js
5.62
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 } = 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); $("#fmobotp").show(); $(".card1").css("margin-top", "0%"); $("#hrule").css("display", "none"); $("#sign-up-scroll").slimScroll({ height: "600px", }); $("#perinfo").css("display", "block"); $("#sendpasswd").css("display", "none"); $("#sendotp").css("display", "none"); $("#sendOTP").show(); // $("#sendotpform").show(); //sendotp } }, }); } function validateRegnoSendOTP() { if (!$("#validateform").valid()) { return; } var parameters = `&mobile=${$("#idmobile").val()}`; $.ajax({ type: "post", url: "validateRegnoSendOTP.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, }); $("#sendOTP").hide(); $("#sendotpform").show(); $("#password").show(); $("#fmobotp").hide(); // $("#motp").hide(); } }, }); } 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: "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: "450px", }); $("#passwordDet").show(); $("#sendotp").css("display", "none"); $("#perinfo").css("display", "block"); $("#sendpasswd").css("display", "none"); $("#confirm-btn").hide(); $("#otpModal").hide(); $("#signup-btn").show(); } else { swal({ title: "Something Went wrong", type: "warning", showCancelButton: false, confirmButtonColor: "#5495ff", confirmButtonText: "OK", closeOnConfirm: false, }); $("#sendotp").css("display", "block"); } }, }); } function signupPaswd() { if (!$("#sendotpform").valid()) { return; } var parameters = `&mobile=${$("#idmobile").val()}&dob=${$("#dob").val()} &password=${$("#password").val()}&motp=${$("#motp").val()}`; $.ajax({ type: "post", url: "signupPwd.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