Add files via upload

This commit is contained in:
Андрей 2020-07-28 12:11:27 +04:00 committed by GitHub
parent 850ffedb60
commit 759b413ea3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

33
achpassgen.py Normal file
View file

@ -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")