Skip to content

Instantly share code, notes, and snippets.

@CallocGD
Created July 23, 2023 21:40
Show Gist options
  • Select an option

  • Save CallocGD/67b712853e9a29704b0c7c7b9fc32031 to your computer and use it in GitHub Desktop.

Select an option

Save CallocGD/67b712853e9a29704b0c7c7b9fc32031 to your computer and use it in GitHub Desktop.
A GPS Spawner/Spammer Concept for Spinning up Multiple Geometry Dash Alt accounts if An Email can have multiple Accounts to use...
"""
GD Tornado by Calloc is an Account Spawner tool designed for making and spinning up bots
using aiohttp and asynchronous frameworks See License Below:
The MIT License (MIT)
Copyright © 2023 Calloc
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the “Software”),
to deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
"""
import asyncclick as click
from aiohttp_socks import ProxyConnector
import aiohttp
import aiofiles
import asyncio
import random
# -- The Exploit (All May require sperate proxies...)--
#
# / GD Account A
# /
# Email [] GD Account B
# \
# \ GD Account C
# Infinate Money Glitch This will basically make chiak0, chiak69 accounts...
class GDAccountSpawner:
def __init__(self,name:str, email:str,password:str,output:str, index:int=0, database:str="http://www.boomlings.com/database") -> None:
self.name = name
self.email = email
self.index = index
self.password = password
self.database = database
self.output = output
def next(self):
self.index += 1
return self.index
async def spawn_account(self, proxy:str):
user_name = self.name + f"{self.index}"
data = {
"userName": user_name,
"password": self.password,
"email": self.email,
"secret": "Wmfv3899gc9"
}
async with aiohttp.ClientSession(ProxyConnector.from_url(proxy,rdns=True),skip_auto_headers=["User-Agent"], raise_for_status=True, timeout=aiohttp.ClientTimeout(360)) as client:
async with client.post(self.database + "/accounts/registerGJAccount.php", data=data) as response:
resp = await response.read()
assert resp == b"1"
print(f"[+] Spawned Account : {user_name}")
async with aiofiles.open(self.output, "a") as w:
await w.write(f"{user_name}:{self.password}\tSpawned on proxy:{proxy}\n")
await w.write(f"----------------------------------------------------------\n")
await asyncio.sleep(random.uniform(2, 7))
async def brute_force_proxies(self,file:str):
async with aiofiles.open(file,"r") as rf:
async for r in rf:
try:
await self.spawn_account(r.strip())
self.next()
except BaseException as e:
print(f"[Error]: [REGISTRY FAILURE]: Reason:{e}")
banner = """
▄▄ • ·▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄ ▐ ▄ ▄▄▄· ·▄▄▄▄
▐█ ▀ ▪██· ██ ▀•██ ▀ ▄█▀▄ ▀▄ █·•█▌▐█▐█ ▀█ ██· ██ ▄█▀▄
▄█ ▀█▄▐█▪ ▐█▌ ▐█.▪▐█▌.▐▌▐▀▀▄ ▐█▐▐▌▄█▀▀█ ▐█▪ ▐█▌▐█▌.▐▌
▐█▄▪▐███. ██ ▐█▌·▐█▌.▐▌▐█•█▌██▐█▌▐█▪ ▐▌██. ██ ▐█▌.▐▌
·▀▀▀▀ ▀▀▀▀▀• ▀▀▀ ▀█▄▀▪.▀ ▀▀▀ █▪ ▀ ▀ ▀▀▀▀▀• ▀█▄▀▪
-- A GDPS Spammer Tool by Calloc --
"""
@click.command()
@click.argument("Username")
@click.option("--password","-p","password",confirmation_prompt=True,hide_input=True, help="A Password to use")
@click.option("--proxylist",multiple=True,type=click.Path(exists=True),confirmation_prompt=True,help="A List of proxies to use they should be formatted like for example socks5://127.0.0.1:5050 http://192.12.0.1:8080 etc...")
@click.option("--email","-e",confirmation_prompt=True,help="An Email to use over and over again")
@click.option("--output","-o",type=click.Path(),default="output_accounts.txt",help="An output of where to store the accounts on",show_default=True)
@click.option("--database","-db", help="A Url endpoint for the gdps server to run against",default="http://www.boomlings.com/database")
async def main(Username:str,password:str, proxylist:tuple[click.Path, ...], email:str,output:str,database:str):
"""
Used to Spin Up GD accounts on different proxies Using working proxy-url lists...
"""
spawner = GDAccountSpawner(Username,email,password,output, database=database)
for p in proxylist:
await spawner.brute_force_proxies(p)
print("[+] Done!")
if __name__ == "__main__":
print(banner)
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment