bbusschots / hsxkpasswd

A Perl module and terminal command for generating secure memorable passwords inspired by the fabulous XKCD web comic and Steve Gibson's Password Hay Stacks. This is the library that powers www.xkpasswd.net
http://www.bartb.ie/xkpasswd
BSD 2-Clause "Simplified" License
278 stars 48 forks source link

Much longer word list #28

Closed mshulman closed 7 years ago

mshulman commented 7 years ago

Much longer word list. Removed all 1, 2, and 3 letter words, and removed all swear words. Based on https://github.com/first20hours/google-10000-english/blob/master/google-10000-english-no-swears.txt

To make this list, I pasted the list into Excel, converted it to a table, then added an additional column with =len(a) to count the number of letters. I then used Excel's filter function and unchecked the rows with a value (letter count) of 1, 2, and 3. Then sorted the remaining list.

mshulman commented 7 years ago

I'm going to make another PR for the updated attribution