From 759b413ea3ca1f1b971ae375634f7f781c62504d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B4=D1=80=D0=B5=D0=B9?= <50486086+DarkCat09@users.noreply.github.com> Date: Tue, 28 Jul 2020 12:11:27 +0400 Subject: [PATCH] Add files via upload --- achpassgen.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 achpassgen.py diff --git a/achpassgen.py b/achpassgen.py new file mode 100644 index 0000000..b2ecb04 --- /dev/null +++ b/achpassgen.py @@ -0,0 +1,33 @@ +# encoding: utf-8 + +print("") +print("****** PASSWORD DICTIONARY GENERATOR *******") +print("*** by AndreyCh (DarkCat09/CodePicker13) ***") +print("") + +targets_personal_data = [ + "", + input("Target's name: "), input("Target's last name: "), input("Target's nickname: "), input("Target's birthday, DDMMYYYY: "), + input("Spouse's name: "), input("Spouse's last name: "), input("Spouse's nickname: "), input("Spouse's birthday, DDMMYYYY: "), + input("Child's name: "), input("Child's last name: "), input("Child's nickname: "), input("Child's birthday, DDMMYYYY: "), + input("Pet's name: "), input("Pet's last name: "), "", input("Pet's birthday, DDMMYYYY: "), + input("First target's phone number, +X 9YYYYYYYYY: "), input("Second target's phone number, +X 9YYYYYYYYY: "), input("Date of password setting, MMYYYY: ") +] +print("") + +dicfile = open("dictionary.txt", "wt", encoding="utf-8") + +for i in range(19): + for j in range(19): + if not ((targets_personal_data[i] + targets_personal_data[j]) == ""): + dicfile.write(targets_personal_data[i] + targets_personal_data[j] + "\n") + dicfile.write(targets_personal_data[i].upper() + targets_personal_data[j] + "\n") + dicfile.write(targets_personal_data[i] + targets_personal_data[j].upper() + "\n") + dicfile.write(targets_personal_data[i].upper() + targets_personal_data[j].upper() + "\n") + +#code + +dicfile.close() + +print("") +input("Press ENTER to exit")