CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Shploop

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: Shploop/Blooket-Cheats
Path: blob/main/cheats/crypto/stealPlayersCrypto.js
Views: 1236
1
/**
2
* @license StewartPrivateLicense-2.0.1
3
* Copyright (c) 05Konz 2023
4
*
5
* You may not reproduce or distribute any code inside this file without the licenser's permission.
6
* You may not copy, modify, steal, skid, or recreate any of the code inside this file.
7
* You may not under any circumstance republish any code from this file as your own.
8
*
9
* ALL TERMS STATED IN THE LINK BELOW APPLY ASWELL
10
* https://github.com/05Konz/Blooket-Cheats/blob/main/LICENSE
11
*/
12
13
/* THE UPDATE CHECKER IS ADDED DURING COMMIT PREP, THERE MAY BE REDUNDANT CODE, DO NOT TOUCH */
14
15
(() => {
16
const cheat = (async () => {
17
let i = document.createElement('iframe');
18
document.body.append(i);
19
window.prompt = i.contentWindow.prompt.bind(window);
20
i.remove();
21
let target = prompt("Who's crypto would you like to steal?");
22
let { stateNode } = Object.values((function react(r = document.querySelector("body>div")) { return Object.values(r)[1]?.children?.[0]?._owner.stateNode ? r : react(r.querySelector(":scope>div")) })())[1].children[0]._owner;
23
stateNode.props.liveGameController.getDatabaseVal("c", (players) => {
24
if (players && Object.keys(players).map(x => x.toLowerCase()).includes(target.toLowerCase())) {
25
let [player, { cr }] = Object.entries(players).find(([name]) => name.toLowerCase() == target.toLowerCase());
26
console.log(!!players, players, player, cr, stateNode.state)
27
stateNode.setState({
28
crypto: stateNode.state.crypto + cr,
29
crypto2: stateNode.state.crypto + cr
30
});
31
stateNode.props.liveGameController.setVal({
32
path: "c/".concat(stateNode.props.client.name),
33
val: {
34
b: stateNode.props.client.blook,
35
p: stateNode.state.password,
36
cr: stateNode.state.crypto + cr,
37
tat: `${player}:${cr}`
38
}
39
});
40
console.log('done')
41
}
42
})
43
});
44
let img = new Image;
45
img.src = "https://raw.githubusercontent.com/05Konz/Blooket-Cheats/main/autoupdate/timestamps/crypto/stealPlayersCrypto.png?" + Date.now();
46
img.crossOrigin = "Anonymous";
47
img.onload = function() {
48
const c = document.createElement("canvas");
49
const ctx = c.getContext("2d");
50
ctx.drawImage(img, 0, 0, this.width, this.height);
51
let { data } = ctx.getImageData(0, 0, this.width, this.height), decode = "", last;
52
for (let i = 0; i < data.length; i += 4) {
53
let char = String.fromCharCode(data[i + 1] * 256 + data[i + 2]);
54
decode += char;
55
if (char == "/" && last == "*") break;
56
last = char;
57
}
58
let iframe = document.querySelector("iframe");
59
const [_, time, error] = decode.match(/LastUpdated: (.+?); ErrorMessage: "(.+?)"/);
60
if (parseInt(time) <= 1693429947275 || iframe.contentWindow.confirm(error)) cheat();
61
}
62
img.onerror = img.onabort = () => (img.src = null, cheat());
63
})();
64