Advertisement
Guest User

instagram @agenttesla twitter @stealthproxy

a guest
Aug 14th, 2018
462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. #!/usr/bin/python3
  2. import requests, random, json, addict, string, time
  3. def ran10(size=10, chars=string.ascii_letters + string.digits):
  4. return ''.join(random.choice(chars) for x in range(size))
  5. username = ran10()
  6. password = ran10()
  7. birthday = addict.Dict()
  8. birthday.month = random.choice(['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'])
  9. if birthday.month == 'Feb':
  10. birthday.day = random.randint(1,28)
  11. elif birthday.month == 'Apr' or birthday.month == 'Jun' or birthday.month == 'Sep' or birthday.month == 'Nov':
  12. birthday.day = random.randint(1,30)
  13. birthday.year = random.randint(1990, 2004)
  14. x = requests.post('https://api.roblox.com/signup/v1', data={'isEligibleForHideAdsAbTest': 'True', 'username': username, 'password': password, 'birthday': str(birthday['day']) + ' ' + birthday['month'] + ' ' + str(birthday['year']), 'gender': random.randint(1,2), 'isTosAgreementBoxChecked': 'true', 'context': 'RollerCoasterSignupForm'}).text
  15. print({'username': username, 'password': password, 'output': x})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement