// ==UserScript== // @name kxBypass Shortlinks Bypasser // @namespace https://discord.gg/pqEBSTqdxV // @version v1 // @description Bypass almost any Keysystem for the low price of FREE! // @author awaitlol. // @match https://bstlar.com/* // @icon https://i.pinimg.com/736x/aa/2a/e5/aa2ae567da2c40ac6834a44abbb9e9ff.jpg // @grant none // @downloadURL none // ==/UserScript== (function () { "use strict"; //UI!! function showBypassModal(link) { const modalHTML = `

kxBypass Development

Bypass Successful! Here is your link:

`; const modalContainer = document.createElement("div"); modalContainer.innerHTML = modalHTML; document.body.appendChild(modalContainer); document.getElementById("kxBypass-redirect").addEventListener("click", () => { window.location.href = link; }); document.getElementById("kxBypass-close").addEventListener("click", () => { document.getElementById("kxBypass-modal").remove(); }); } //UI! //BSTLAR BYPASS if (window.location.href.includes("bstlar")) { console.log("[kxBypass] Bstlar detected. Please wait."); let url = window.location.href; const path = new URL(url).pathname.substring(1); fetch(`https://bstlar.com/api/link?url=${path}`, { headers: { "accept": "application/json, text/plain, */*", "accept-language": "en-US,en;q=0.9", "authorization": "null", "Referer": window.location.href, "Referrer-Policy": "same-origin" }, method: "GET" }) .then(response => response.json()) .then(data => { console.log("[kxBypass] Received Data:", data); if (data.tasks && data.tasks.length > 0) { let linkId = data.tasks[0].link_id; console.log("[kxBypass] Extracted link_id:", linkId); return fetch("https://bstlar.com/api/link-completed", { headers: { "accept": "application/json, text/plain, */*", "content-type": "application/json;charset=UTF-8", "authorization": "null", "Referer": window.location.href, "Referrer-Policy": "same-origin" }, body: JSON.stringify({ link_id: linkId }), method: "POST" }); } else { throw new Error("No tasks found in response!"); } }) .then(response => response.text()) .then(finalLink => { console.log("[kxBypass] Final link:", finalLink); showBypassModal(finalLink); }) .catch(error => console.error("[kxBypass] Error:", error)); } //BSTLAR BYPASS })();