Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name [Working] loot-link.com bypasser (includes all lootlabs.gg link variations)
- // @homepageURL https://discord.gg/92p6X2drxn
- // @description bypasses loot-link.com quickly and efficiently, saving you time and energy.
- // @author antiworking
- // @match https://loot-link.com/s?*
- // @match https://loot-links.com/s?*
- // @match https://lootlink.org/s?*
- // @match https://lootlinks.co/s?*
- // @match https://lootdest.info/s?*
- // @match https://lootdest.org/s?*
- // @match https://lootdest.com/s?*
- // @match https://links-loot.com/s?*
- // @match https://linksloot.net/s?*
- // @run-at document-end
- // @version 2.1
- // @license MIT
- // @supportURL https://discord.gg/92p6X2drxn
- // @icon https://files.catbox.moe/kflwuj.png
- // @namespace https://greasyfork.org/users/1237543
- // @downloadURL https://update.greasyfork.org/scripts/483207/%5BWorking%5D%20loot-linkcom%20bypasser%20%28includes%20all%20lootlabsgg%20link%20variations%29.user.js
- // @updateURL https://update.greasyfork.org/scripts/483207/%5BWorking%5D%20loot-linkcom%20bypasser%20%28includes%20all%20lootlabsgg%20link%20variations%29.meta.js
- // ==/UserScript==
- function decryptData(encodedData, keyLength = 5) {
- let decryptedData = '',
- base64Decoded = atob(encodedData),
- key = base64Decoded.substring(0, keyLength),
- encryptedContent = base64Decoded.substring(keyLength);
- for (let i = 0; i < encryptedContent.length; i++) {
- let charCodeEncrypted = encryptedContent.charCodeAt(i),
- charCodeKey = key.charCodeAt(i % key.length),
- decryptedCharCode = charCodeEncrypted ^ charCodeKey;
- decryptedData += String.fromCharCode(decryptedCharCode);
- }
- return decryptedData;
- }
- (function () {
- if (typeof p == 'object' && p?.PUBLISHER_LINK && decryptData(p['PUBLISHER_LINK'])) {
- window.location.assign(decryptData(p['PUBLISHER_LINK']));
- }
- else {
- alert('bypass failed.\nplease join the discord at https://discord.gg/92p6X2drxn to report this issue.');
- window.open('https://discord.gg/92p6X2drxn', '_blank');
- }
- })();
Add Comment
Please, Sign In to add comment