Add more comments on lines 60 and 61
This commit is contained in:
parent
8d4271ba3c
commit
3659a1c9ef
1 changed files with 4 additions and 1 deletions
5
main.py
5
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()
|
||||
|
|
Loading…
Reference in a new issue