tomoneko

bypass

Feb 5th, 2024
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. // ==UserScript==
  2. // @name [Working] loot-link.com bypasser (includes all lootlabs.gg link variations)
  3. // @homepageURL https://discord.gg/92p6X2drxn
  4. // @description bypasses loot-link.com quickly and efficiently, saving you time and energy.
  5. // @author antiworking
  6. // @match https://loot-link.com/s?*
  7. // @match https://loot-links.com/s?*
  8. // @match https://lootlink.org/s?*
  9. // @match https://lootlinks.co/s?*
  10. // @match https://lootdest.info/s?*
  11. // @match https://lootdest.org/s?*
  12. // @match https://lootdest.com/s?*
  13. // @match https://links-loot.com/s?*
  14. // @match https://linksloot.net/s?*
  15. // @run-at document-end
  16. // @version 2.1
  17. // @license MIT
  18. // @supportURL https://discord.gg/92p6X2drxn
  19. // @icon https://files.catbox.moe/kflwuj.png
  20. // @namespace https://greasyfork.org/users/1237543
  21. // @downloadURL https://update.greasyfork.org/scripts/483207/%5BWorking%5D%20loot-linkcom%20bypasser%20%28includes%20all%20lootlabsgg%20link%20variations%29.user.js
  22. // @updateURL https://update.greasyfork.org/scripts/483207/%5BWorking%5D%20loot-linkcom%20bypasser%20%28includes%20all%20lootlabsgg%20link%20variations%29.meta.js
  23. // ==/UserScript==
  24.  
  25. function decryptData(encodedData, keyLength = 5) {
  26. let decryptedData = '',
  27. base64Decoded = atob(encodedData),
  28. key = base64Decoded.substring(0, keyLength),
  29. encryptedContent = base64Decoded.substring(keyLength);
  30.  
  31. for (let i = 0; i < encryptedContent.length; i++) {
  32. let charCodeEncrypted = encryptedContent.charCodeAt(i),
  33. charCodeKey = key.charCodeAt(i % key.length),
  34. decryptedCharCode = charCodeEncrypted ^ charCodeKey;
  35.  
  36. decryptedData += String.fromCharCode(decryptedCharCode);
  37. }
  38.  
  39. return decryptedData;
  40. }
  41.  
  42. (function () {
  43. if (typeof p == 'object' && p?.PUBLISHER_LINK && decryptData(p['PUBLISHER_LINK'])) {
  44. window.location.assign(decryptData(p['PUBLISHER_LINK']));
  45. }
  46. else {
  47. alert('bypass failed.\nplease join the discord at https://discord.gg/92p6X2drxn to report this issue.');
  48. window.open('https://discord.gg/92p6X2drxn', '_blank');
  49. }
  50. })();
Add Comment
Please, Sign In to add comment