Combined Bypass Scripts

Bypass Valyse Ad, Fluxus Key System, and Trigon Evo Key System. Async#4226 and woah24 no more electron bypass

Αυτός ο κώδικας έχει διαγραφεί από συντονιστή ως απάντηση σε αυτή την αναφορά και δεν είναι προσβάσιμος από άλλους. Η επικαλούμενη αιτία είναι: «Αναφορά #64223». Ανατρέξτε στους κανόνες του Sleazy Fork. Αν πιστεύετε ότι η διαγραφή είναι εσφαλμένη, μπορείτε να εφεσιβάλλετε αυτή τη διαγραφή. Μην αναφέρετε αυτόν τον κώδικα, γιατί αν το κάνετε ίσως έχει αποτέλεσμα τον αποκλεισμό από το Sleazy Fork.

Combined Bypass Scripts διεγράφει εξαιτίας: Αναφορά #64223.

Η έφεση υποβλήθει από τον δημιουργό:

// ==UserScript==
// @name Combined Bypass Scripts (Excluding Electron Key Bypass)
// @version 2.9
// @description Bypass Valyse Ad and bypass the Fluxus Key System. Async#4226 and woah24
// @match *://*.valyseteam.net/*
// @match *://*.linkvertise.com/*
// @match *://*.flux.li/*
// @match *://*.fluxteam.net/*
// @grant GM_setClipboard
// @icon https://cdn.discordapp.com/attachments/1144971182844686336/1155541773955895356/image.png
// @namespace https://greasyfork.org/users/1160145
// @license MIT
// ==/UserScript==

(function () {
'use strict';

// Valyse Bypasser
const valyseCompletedURL = 'https://valyseteam.net/completed';
const valyseNiceURL = 'https://valyseteam.net/nice';

// Fluxus Key System Bypasser
const redirectMap = {
"https://linkvertise.com/152666/fluxus-windows-check-1/1": "fluxteam.net/windows/checkpoint/check1.php",
"https://linkvertise.com/152666/fluxus-windows-check-2/1": "fluxteam.net/windows/checkpoint/check2.php",
"https://linkvertise.com/152666/fluxus-windows-main/1": "fluxteam.net/windows/checkpoint/main.php",
"https://fluxteam.net/windows/checkpoint/check1.php": "linkvertise.com/152666/fluxus-windows-check-2/1",
"https://fluxteam.net/windows/checkpoint/check2.php": "linkvertise.com/152666/fluxus-windows-main/1",
};

const currentURL = window.location.href;

if (currentURL in redirectMap) {
window.location.replace(`https://${redirectMap[currentURL]}`);
}

if (currentURL === "https://fluxteam.net/windows/checkpoint/check1.php") {
localStorage.setItem('startTime', Date.now());
}

if (currentURL.includes("flux.li/windows/start.php?HWID=")) {
const HWID = currentURL.split("=")[1];
showNotification({ r: 0, g: 128, b: 0 }, "Got HWID! Completing Key System...");
window.location.href = `https://flux.li/windows/start.php?7b20bcc1dfe26db966bb84f159da392f=false&HWID=${HWID}`;
}

if (currentURL === "https://flux.li/windows/start.php") {
showNotification({ r: 255, g: 0, b: 0 }, "No HWID has been entered into the URL! Please enter your HWID into the URL and try again.");
}

if (currentURL === "https://fluxteam.net/windows/checkpoint/main.php") {
window.stop();
const startTime = localStorage.getItem('startTime');
if (startTime) {
const endTime = Date.now();
const elapsedSeconds = Math.floor((endTime - parseInt(startTime)) / 1000);
showNotification(
{ r: 0, g: 128, b: 0 },
`Successfully bypassed Fluxus Keysystem! It took ${elapsedSeconds} seconds to reach here. Please copy your key and paste it into Fluxus.`
);
} else {
showNotification(
{ r: 0, g: 128, b: 0 },
'Successfully bypassed Fluxus Keysystem!'
);
}
}

// Valyse Bypasser
function showNotification(color, message) {
const notificationDiv = document.createElement('div');
notificationDiv.style.backgroundColor = `rgb(${color.r}, ${color.g}, ${color.b})`;
notificationDiv.style.color = 'white';
notificationDiv.style.position = 'fixed';
notificationDiv.style.top = '0';
notificationDiv.style.left = '0';
notificationDiv.style.width = '100%';
notificationDiv.style.padding = '10px';
notificationDiv.style.textAlign = 'center';
notificationDiv.style.fontWeight = 'bold';
notificationDiv.textContent = message;
document.body.appendChild(notificationDiv);
setTimeout(() => {
document.body.removeChild(notificationDiv);
}, 5000);
}
})();
I changed it

Ως αποτέλεσμα αυτής της έφεσης, ο συντονιστής επανέφερε αυτόν τον κώδικα.