From 51f9105efabe6f6bae2769db50ba6ff68cb7b22d Mon Sep 17 00:00:00 2001 From: Tiffany Date: Sun, 5 Nov 2023 00:50:49 -0400 Subject: [PATCH] Update random methods with randbytes --- main.py | 35 ++++++++++++++++++++++++++++++++--- 1 file changed, 32 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index 82f1930..b444c5b 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,4 @@ -import sys +# import sys import os import random import platform @@ -6,6 +6,13 @@ import argparse import threading import socket +# TODO: Read docs on time, os, random, and platform +# TODO: Take questions to Mastodon +# TODO: Eat good food +# TODO: Get plenty of water and sleep + + +# ANSI colors with proper escape R = '\033[31m' G = '\033[32m' C = '\033[36m' @@ -19,13 +26,35 @@ W = '\033[0m' # what that means for the network being scanned +sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) +sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) +sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) +bytes1 = random.randbytes(2000) +bytes2 = random.randbytes(2900) +system = platform.uname()[0] + + +def check_os(): + if system == 'Windows': + os.system("cls") + elif system == 'Unix': + os.system("clear") + + +# Just added stupid infinite loop to shut up PyCharm complaints +# The loop is stupid and doesn't work, but it is just filler def ddos(target, port, ipaddress): try: - while True: - + while True: + num = 0 + num2 = 1 + comp = num < num2 + print(f"{comp}, infinite loop son") + except: + print("some more dummy text yo") for i in range(150):