This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Autopass Cloudflare CAPTCHA | |
// @namespace Violentmonkey Scripts | |
// @match *://*/* | |
// @version XiaoYing_2023.05.25.22_debloated | |
// @grant none | |
// @run-at document-start | |
// @author github.com @XiaoYingYo - debloated - @makindotcc | |
// @icon https://www.google.com/s2/favicons?sz=48&domain=cloudflare.com | |
// @icon64 https://www.google.com/s2/favicons?sz=64&domain=cloudflare.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const username = "EMAIL do konta mojang" | |
const password = "Haslo do konta mojang" | |
const mc = require('minecraft-protocol') | |
const srv = mc.createServer({ | |
'online-mode': false, | |
port: 25565, | |
keepAlive: true, | |
version: "1.17.1", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"fmt" | |
"io" | |
"io/ioutil" | |
"os" | |
"reflect" | |
"sync" |