Advertisement
Guest User

Untitled

a guest
May 28th, 2016
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. #create account
  2. elif used_prefix and user.name.lower() in owners and cmd == "cacc":
  3. try:
  4. a = args.split(maxsplit=1)
  5. email = random.choice(["rndsl","rndkl","rndty","rndon","rndoam"])
  6. num = str(random.randint(1,99999))
  7. em = str(email+num+"@hotmail.com")
  8. exist = "<!-- DO NOT GIVE THIS PAGE SOURCE CODE TO ANYONE, TO KEEP YOUR ACCOUNT SECURE -->"
  9. d = {"email": em,
  10. "login": a[0],
  11. "password": a[1],
  12. "password_confirm": a[1],
  13. "storecookie": "on",
  14. "checkerrors": "yes"}
  15. s = requests.Session()
  16. p = s.post('http://chatango.com/signupdir', data=d)
  17. r = s.get('http://'+a[0]+'.chatango.com/')
  18. print(r.text)
  19. if exist in r.text:
  20.  
  21. room.message(font(fColor=random.choice(randcolor))+"["+a[0].capitalize()+"] "+font(fColor=random.choice(randcolor))+"already exist.", True)
  22. else:
  23. room.message("\r \r \r Account created! \r \r"+font(fColor=random.choice(randcolor))+" User: "+a[0].capitalize()+font(fColor=random.choice(randcolor))+"\r Pass: "+a[1]+" \r Gen Email: "+font(fColor=random.choice(randcolor))+em, True)
  24.  
  25. except: room.message("error")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement