ADlink Bypass by : SAMRAT

Bypass Adlink

  1. // ==UserScript==
  2. // @name ADlink Bypass by : SAMRAT
  3. // @homepageURL https://discord.gg/HwfEf224h
  4. // @namespace fluxus_bypass
  5. // @description Bypass Adlink
  6. // @author SAMRAT
  7. // @match *://*/*
  8. // @license SAMRAT
  9. // @icon https://cdn.discordapp.com/attachments/1270008634180370452/1284110158175146005/458088204_2297085623974752_1364441149326360095_n.jpg?ex=66e57047&is=66e41ec7&hm=c4c687d4ec4eae8f911eb2ef41497b29154f9c87f02112d289b8939f870cd58d&
  10. // @grant GM_xmlhttpRequest
  11. // @run-at document-start
  12. // @version 0.0.2
  13. // ==/UserScript==
  14. (function() {
  15. 'use strict';
  16.  
  17. // Fetch the current page URL
  18. const currentUrl = window.location.href;
  19.  
  20. // API URLs
  21. const apiUrls = [
  22. `https://api.bypass.vip/bypass?url=${encodeURIComponent(currentUrl)}`,
  23. `https://dlr.kys.gay/api/free/bypass?url=${encodeURIComponent(currentUrl)}`
  24. ];
  25.  
  26. // Function to handle API response
  27. function handleApiResponse(response) {
  28. if (response.status === 200) {
  29. const jsonResponse = JSON.parse(response.responseText);
  30. if (jsonResponse.status === "success" && jsonResponse.result) {
  31. const redirectUrl = jsonResponse.result;
  32.  
  33. // Check if the redirect URL is valid
  34. if (redirectUrl.startsWith("http://") || redirectUrl.startsWith("https://")) {
  35. // Show success banner
  36. showSuccessBanner(redirectUrl);
  37.  
  38. // Auto-redirect to the bypassed URL after 3 seconds
  39. setTimeout(() => {
  40. window.location.replace(redirectUrl);
  41. }, 3000);
  42. }
  43. }
  44. }
  45. }
  46.  
  47. // Create and show a success banner
  48. function showSuccessBanner(redirectUrl) {
  49. const banner = document.createElement('div');
  50. banner.style.position = 'fixed';
  51. banner.style.top = '0';
  52. banner.style.left = '0';
  53. banner.style.width = '100%';
  54. banner.style.backgroundColor = '#4CAF50';
  55. banner.style.color = 'white';
  56. banner.style.padding = '10px';
  57. banner.style.fontSize = '18px';
  58. banner.style.zIndex = '10000';
  59. banner.style.textAlign = 'center';
  60. banner.style.fontFamily = 'Arial, sans-serif';
  61. banner.innerHTML = `Success! Full bypass achieved. Redirecting to: <a href="${redirectUrl}" style="color: yellow; text-decoration: underline;">${redirectUrl}</a>`;
  62. document.body.appendChild(banner);
  63. }
  64.  
  65. // Send parallel requests to both APIs and process the fastest response
  66. apiUrls.forEach(apiUrl => {
  67. GM_xmlhttpRequest({
  68. method: "GET",
  69. url: apiUrl,
  70. onload: handleApiResponse,
  71. onerror: function() {
  72. console.error("An error occurred during the API request to " + apiUrl);
  73. }
  74. });
  75. });
  76. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址