Skip to content

Instantly share code, notes, and snippets.

@SevenworksDev
Last active September 17, 2024 06:45
Show Gist options
  • Save SevenworksDev/a79c1a8ea76a1ed261f1b18ce7c6f886 to your computer and use it in GitHub Desktop.
Save SevenworksDev/a79c1a8ea76a1ed261f1b18ce7c6f886 to your computer and use it in GitHub Desktop.
big boy account creator for geometry dash
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()
@SevenworksDev
Copy link
Author

lmao

@Norvway
Copy link

Norvway commented Sep 17, 2024

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