Skip to content

Instantly share code, notes, and snippets.

@SevenworksDev
Created November 10, 2023 13:02
Show Gist options
  • Save SevenworksDev/f68a605e31c74e172be018e71594fb52 to your computer and use it in GitHub Desktop.
Save SevenworksDev/f68a605e31c74e172be018e71594fb52 to your computer and use it in GitHub Desktop.
big boy account creator (mass account edition)
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
for i in range(200):
threading.Thread(target=createacc, args=(random.choice(proxies), "aa@gmail.com",)).start()
threading.Thread(target=createacc, args=(random.choice(proxies), "bb@gmail.com",)).start()
threading.Thread(target=createacc, args=(random.choice(proxies), "cc@gmail.com",)).start()
threading.Thread(target=createacc, args=(random.choice(proxies), "dd@gmail.com",)).start()
threading.Thread(target=createacc, args=(random.choice(proxies), "11@gmail.com",)).start()
threading.Thread(target=createacc, args=(random.choice(proxies), "22@gmail.com",)).start()
threading.Thread(target=createacc, args=(random.choice(proxies), "33@gmail.com",)).start()
threading.Thread(target=createacc, args=(random.choice(proxies), "44@gmail.com",)).start()
threading.Thread(target=createacc, args=(random.choice(proxies), "wtf@gmail.com",)).start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment