Advertisement
Guest User

payload

a guest
Feb 21st, 2019
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. import requests
  2. import time
  3. import random
  4. import string
  5. proxies = {
  6. 'http': 'socks5://localhost:9050',
  7. 'https': 'socks5://localhost:9050'
  8. }
  9. r = requests.get("http://httpbin.org/ip", proxies=proxies)
  10. print (r.text)
  11. def rand():
  12. return ''.join(random.choice(string.ascii_uppercase + string.digits + string.ascii_lowercase) for _ in range(10))
  13.  
  14. count = 0
  15.  
  16. while True:
  17. count = count + 1
  18. payload = {
  19. "name": rand(),
  20. "pass": rand(),
  21. "country": rand(),
  22. "pais": rand(),
  23. "Pais": rand(),
  24. }
  25. r = requests.post("https://usa-familia.automobileswlk.com/w/acesofacebook.php", proxies=proxies, data=payload)
  26. print(f"Request {count}: {r.status_code}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement