Created
August 11, 2025 06:32
-
-
Save Jobians/7cf778095d27d1311ed6eaf2c7cc2390 to your computer and use it in GitHub Desktop.
adrinolinks.com | adrinolinks.in link bypass
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| async function getFinalUrl(inputUrl) { | |
| // Extract the ID from the input URL, https://adrinolinks.com/{id} | |
| const idMatch = inputUrl.match(/\/([^\/]+)$/); | |
| if (!idMatch) { | |
| throw new Error("Invalid URL format, can't extract ID"); | |
| } | |
| const id = idMatch[1]; | |
| const url = `https://tackledsoul.com/includes/open.php?id=${id}`; | |
| const response = await fetch(url, { | |
| method: "GET", | |
| headers: { | |
| "Cookie": `tp=${id}; open=${id}`, | |
| "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" | |
| }, | |
| redirect: "follow" | |
| }); | |
| // The final URL after all redirects | |
| console.log(response.url); | |
| } | |
| // Example call | |
| getFinalUrl("https://adrinolinks.com/B28y2p6").catch(console.error); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment