Last active
September 17, 2024 06:45
-
-
Save SevenworksDev/a79c1a8ea76a1ed261f1b18ce7c6f886 to your computer and use it in GitHub Desktop.
big boy account creator for geometry dash
This file contains 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
import requests, random, threading, sys, string | |
with open("proxies.txt", "r") as proxies_file: proxies = proxies_file.read().splitlines() | |
def createacc(gjproxy, gjemail): | |
try: | |
gjuser = "".join(random.choices(string.ascii_letters, k=9)) | |
gjpass = "".join(random.choices(string.ascii_letters, k=7)) | |
response = requests.post(f"http://www.boomlings.com/database/accounts/registerGJAccount.php", headers={"User-Agent":""}, data={"userName": gjuser, "password": gjpass, "email": gjemail, "secret": "Wmfv3899gc9"}, proxies={"http": gjproxy, "https": gjproxy}) | |
if response.text == "1": | |
with open("accounts.txt", "a") as f: | |
print(gjuser + " / " + gjpass + " / " + gjemail, file=f) | |
print("done") | |
sys.exit() | |
else: | |
pass | |
except: | |
pass | |
gjemail = input("E-mail: ") | |
for i in range(200): | |
thread = threading.Thread(target=createacc, args=(random.choice(proxies), gjemail,)).start() |
lmao
what proxies need to be used? xd
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks - was too lazy to make myself and I knew you must have one