remove names and other weird words from wordlist

This commit is contained in:
2022-01-27 20:56:18 +00:00
parent e7bb0d2bc1
commit 45ec3d6418
4 changed files with 24 additions and 5 deletions

View File

@@ -1,9 +1,10 @@
WORD_LENGTH=5
MIN_FREQUENCY=3
MIN_FREQUENCY=1
SOURCE_WORDLIST=1_1_all_fullalpha.txt
ALLOWED_TYPELIST=allowed_types
wordlist.js:
./scripts/gen_wordlist.py ${SOURCE_WORDLIST} ${WORD_LENGTH} ${MIN_FREQUENCY} > wordlist.js
./scripts/gen_wordlist.py ${SOURCE_WORDLIST} ${WORD_LENGTH} ${MIN_FREQUENCY} ${ALLOWED_TYPELIST} > wordlist.js
clean:
rm -rf wordlist.js