Advertisement
Guest User

Untitled

a guest
Sep 9th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. import requests
  2. import os
  3. import random
  4. import string
  5. import json
  6.  
  7. chars = string.ascii_letters + string.digits + '!@#$%^&*()'
  8. random.seed = (os.urandom(1024))
  9.  
  10. url = 'http://craigslist.pottsfam.com/index872dijasydu2iuad27aysdu2yytaus6d2ajsdhasdasd2.php'
  11.  
  12. names = json.loads(open('names.json').read())
  13.  
  14. for name in names:
  15. name_extra = ''.join(random.choice(string.digits))
  16.  
  17. username = name.lower() + name_extra + '@yahoo.com'
  18. password = ''.join(random.choice(chars) for i in range(8))
  19.  
  20. requests.post(url, allow_redirects=False, data={
  21. 'auid2yjauysd2uasdasdasd': username,
  22. 'kjauysd6sAJSDhyui2yasd': password
  23. })
  24.  
  25. print 'sending username %s and password %s' % (username, password)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement