You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.7 KiB
JavaScript
94 lines
2.7 KiB
JavaScript
// ==UserScript==
|
|
// @name Preventing Console Cheats
|
|
// @namespace https://www.bondageprojects.com/
|
|
// @version 0.1
|
|
// @description prevent console cheats
|
|
// @author Sidious
|
|
// @match https://bondageprojects.elementfx.com/*
|
|
// @match https://www.bondageprojects.elementfx.com/*
|
|
// @match https://bondage-europe.com/*
|
|
// @match https://www.bondage-europe.com/*
|
|
// @match http://localhost:*/*
|
|
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
|
|
// @grant none
|
|
// @run-at document-end
|
|
// ==/UserScript==
|
|
|
|
/**
|
|
* BCE
|
|
* Copyright (C) 2022 Sid
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
(function () {
|
|
"use strict";
|
|
function fromConsole() {
|
|
let stack = "";
|
|
try {
|
|
/*
|
|
* Throwing the error for Safari's sake, in Chrome and Firefox
|
|
* var stack = new Error().stack; is sufficient.
|
|
*/
|
|
throw new Error();
|
|
} catch (e) {
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
({ stack } = e);
|
|
}
|
|
if (!stack) {
|
|
return false;
|
|
}
|
|
|
|
const lines = stack.split("\n");
|
|
// Chrome
|
|
if (lines[lines.length - 1].indexOf("at <anonymous>:") >= 0) {
|
|
return true;
|
|
}
|
|
for (let i = 0; i < lines.length; i++) {
|
|
// Firefox
|
|
if (lines[i].indexOf("@debugger eval code") >= 0) {
|
|
return true;
|
|
}
|
|
// Safari (untested)
|
|
if (lines[i].indexOf("_evaluateOn") >= 0) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
const iframe = document.createElement("iframe");
|
|
iframe.style.display = "none";
|
|
document.body.appendChild(iframe);
|
|
|
|
Object.getOwnPropertyNames(window)
|
|
.filter(
|
|
(n) => !Object.prototype.hasOwnProperty.call(iframe.contentWindow, n)
|
|
)
|
|
.filter((n) => typeof window[n] === "function" && /^[A-Z]/u.test(n))
|
|
.forEach((n) => {
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
const original = window[n];
|
|
window[n] = function () {
|
|
if (fromConsole()) {
|
|
throw new Error("attempting to use console");
|
|
}
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-return, @typescript-eslint/no-unsafe-call
|
|
return original(...arguments);
|
|
};
|
|
});
|
|
|
|
document.body.removeChild(iframe);
|
|
})();
|