Compare commits

..

3 Commits

Author SHA1 Message Date
xaloc 9a3ad7bd88 add README and LICENSE 2020-11-25 12:07:13 +01:00
xaloc 73b22137e8 second last name 2020-11-25 11:48:48 +01:00
xaloc 4583a3dc47 change order + convert input to lower 2020-11-25 11:47:06 +01:00
4 changed files with 11 additions and 2 deletions
+1
View File
@@ -0,0 +1 @@
*.txt
+5
View File
@@ -0,0 +1,5 @@
"THE NON-ALCOHOLIC-BEVERAGE-WARE LICENSE":
<xaloc@tutanota.com> wrote this. As long as you retain this notice you can
do whatever you want with this stuff. If we meet some day, and you think this
stuff is worth it, you can buy me a non-alcoholic beverage in return Xaloc
+3
View File
@@ -0,0 +1,3 @@
# Wordlist Generator
This small script creates a curated password list using a targets information. Only data provided is used, it uses the words in lowercase, capitalized and in uppercase. Only 3 info points are used at a time and there is no random numbers, letters or special characters added. There's no support for 1337.
+2 -2
View File
@@ -1,7 +1,7 @@
from itertools import combinations from itertools import combinations
def clean_input(txt): def clean_input(txt):
txt = str(txt).replace(" ","") txt = str(txt).replace(" ","").lower()
return txt return txt
def extract_date(txt): def extract_date(txt):
@@ -27,8 +27,8 @@ def allcaps(x):
firstName = clean_input(input("First Name: ")) firstName = clean_input(input("First Name: "))
lastName = clean_input(input("Last Name: ")) lastName = clean_input(input("Last Name: "))
middleName = clean_input(input("Middle Name (or second last name): "))
nickName = clean_input(input("Nick Name: ")) nickName = clean_input(input("Nick Name: "))
middleName = clean_input(input("Middle Name: "))
birthDate = clean_input(input("Birth Date (DDMMYYYY): ")) birthDate = clean_input(input("Birth Date (DDMMYYYY): "))
day,month,year_long,year_short = extract_date(birthDate) day,month,year_long,year_short = extract_date(birthDate)
birthDate = day+month+year_short birthDate = day+month+year_short