DELTA BYPASS UNPATCHED

DeltaBypass

  1. // ==UserScript==
  2. // @name DELTA BYPASS UNPATCHED
  3. // @namespace http://tampermonkey.net/
  4. // @version 3.5
  5. // @description DeltaBypass
  6. // @author A_Q
  7. // @match https://loot-link.com/s?*
  8. // @match https://gateway.platoboost.com/a/8?id=*
  9. // @license A_Q
  10. // @grant none
  11. // ==/UserScript==
  12. (function() {
  13. 'use strict';
  14.  
  15. const urlnow = window.location.href;
  16. function isBase64(str) {
  17. try {
  18. if (typeof str !== 'string' || str.length === 0) return false;
  19. const base64Pattern = /^[A-Za-z0-9+/=]+$/;
  20. if (!base64Pattern.test(str)) return false;
  21. const decodedStr = atob(str);
  22. return btoa(decodedStr) === str;
  23. } catch (e) {
  24. return false;
  25. }
  26. }
  27.  
  28. function getParameterByName(name) {
  29. const urlParams = new URLSearchParams(window.location.search);
  30. return urlParams.get(name);
  31. }
  32.  
  33. const lutink = false;
  34. const base64String = getParameterByName('r');
  35. if (base64String && isBase64(base64String)) {
  36. try {
  37. const decodedUrl = atob(base64String);
  38. window.location.href = decodedUrl;
  39. } catch (error) {
  40. console.error('Error\n', error)
  41. }
  42. }
  43. })();

QingJ © 2025

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