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()