From 9cea1829b04dfc336ef8e2f92edbe614790db556 Mon Sep 17 00:00:00 2001 From: Soulsender Date: Thu, 12 Jan 2023 21:17:07 +0000 Subject: [PATCH] Create ssid_name_creator.py Will create a user-specified amout of SSIDs to be used with a user-specified string --- ssid_name_creator.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ssid_name_creator.py diff --git a/ssid_name_creator.py b/ssid_name_creator.py new file mode 100644 index 0000000..d0f9e76 --- /dev/null +++ b/ssid_name_creator.py @@ -0,0 +1,9 @@ +spam_string = input("Type in what you want to spam: ") +ssid_num = int(input("How many SSIDs do you want? ")) + +with open("ssid_list.txt", "w") as file: + for i in range(ssid_num, 0, -1): + ssid_string = spam_string + " " + str(i) + file.write(ssid_string + "\n") + +exit()