Add more comments on lines 60 and 61

This commit is contained in:
Tiffany 2023-11-05 01:02:28 -04:00
parent 8d4271ba3c
commit 3659a1c9ef

View file

@ -6,7 +6,7 @@ import argparse
import threading import threading
import socket import socket
# TODO: Read docs on time, os, random, and platform # TODO: Read docs on time, os, random, threading, and platform
# TODO: Take questions to Mastodon # TODO: Take questions to Mastodon
# TODO: Eat good food # TODO: Eat good food
# TODO: Get plenty of water and sleep # TODO: Get plenty of water and sleep
@ -57,6 +57,9 @@ def ddos(target, port, ipaddress):
print("some more dummy text yo") print("some more dummy text yo")
# Got this idea from a YouTube video with a guy who admits his script it shitty
# I guess I don't feel too bad then
for i in range(150): for i in range(150):
thread = threading.Thread(target=ddos) thread = threading.Thread(target=ddos)
thread.start() thread.start()