Skip to content

Instantly share code, notes, and snippets.

@caglarorhan
Created September 6, 2021 18:17
Show Gist options
  • Save caglarorhan/1497cd6a819626fd42381fe8ddce1d83 to your computer and use it in GitHub Desktop.
Save caglarorhan/1497cd6a819626fd42381fe8ddce1d83 to your computer and use it in GitHub Desktop.
sidebar
window.addEventListener('load', () => {
const ccode = 2354;
const agent = navigator.userAgent;
const referrer = document.referrer;
const url = window.location.href;
const wprotocol = ('https:' === document.location.protocol) ? 'https' : 'http';
const imgTracker = document.createElement('img');
imgTracker.src = wprotocol + '://traffic.wdc.center/traffic.php?mkodu=' + ccode + '&url=' + document.location.href + '&t=' + document.title + '&ref=' + referrer + '&agent=' + agent;
imgTracker.style.height = 0;
imgTracker.style.width = 0;
document.body.insertAdjacentElement('beforeend', imgTracker);
if (url.includes("secretcode")) {
const product_code = document.querySelector("#link_table_id") ? document.querySelector("#link_table_id").value : '';
const product_name = document.querySelector("h1") ? document.querySelector("h1").innerText : '';
const old_price = '';
const new_price = '';
const img_1 = '';
const product_url = document.location.href;
const imgTracker2 = document.createElement('img');
imgTracker2.src = wprotocol + '://login.wdc.studio/api/add_product_client.php?ccode=' + ccode + '&product_code=' + product_code + '&product_name=' + product_name + '&old_price=' + old_price + '&new_price=' + new_price + '&product_img=' + img_1 + '&product_url=' + product_url;
imgTracker2.style.height = 0;
imgTracker2.style.width = 0;
document.body.insertAdjacentElement('beforeend', imgTracker2);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment