Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/usr/bin/env python2
  2. # python2 bulk_register.py < accounts.txt > registered.txt
  3. # format accounts.txt like `username:password:email`
  4. import requests
  5. import sys
  6.  
  7. accounts = [a.split(":") for a in sys.stdin.read().split("\n") if a.strip() != ""]
  8. base = "https://feelinsonice.appspot.com"
  9.  
  10. for account in accounts:
  11.     username, password, email = account
  12.     reg = requests.post(base + "/bq/register", data={
  13.         "req_token": "9301c956749167186ee713e4f3a3d90446e84d8d19a4ca8ea9b4b314d1c51b7b",
  14.         "timestamp": 1373209025,
  15.         "email": email,
  16.         "password": password,
  17.         "age": 19,
  18.         "birthday": "1994-11-27",
  19.     }, headers={"User-agent": None})
  20.     if not reg.json()["logged"]:
  21.         continue
  22.     nam = requests.post(base + "/ph/registeru", data={
  23.         "req_token": "9301c956749167186ee713e4f3a3d90446e84d8d19a4ca8ea9b4b314d1c51b7b",
  24.         "timestamp": 1373209025,
  25.         "email": email,
  26.         "username": username
  27.     }, headers={"User-agent": None})
  28.     if not nam.json()["logged"]:
  29.         continue
  30.     sys.stdout.write(":".join(account) + "\n")
  31.     sys.stdout.flush()