From 3659a1c9efbd73520e112c15d0f0925c499214c2 Mon Sep 17 00:00:00 2001 From: Tiffany Date: Sun, 5 Nov 2023 01:02:28 -0400 Subject: [PATCH] Add more comments on lines 60 and 61 --- main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 368ce55..e176f6e 100644 --- a/main.py +++ b/main.py @@ -6,7 +6,7 @@ import argparse import threading 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: Eat good food # TODO: Get plenty of water and sleep @@ -57,6 +57,9 @@ def ddos(target, port, ipaddress): 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): thread = threading.Thread(target=ddos) thread.start()