Skip to content

Commit bcfb3f8

Browse files
committed
Changed to 20K wordlist.
1 parent 7a821b4 commit bcfb3f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ThreeRandomWords.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ <h2>Your New Password</h2>
8181
return word ? word.charAt(0).toUpperCase() + word.slice(1).toLowerCase() : '';
8282
}
8383

84-
$.get('https://raw.githubusercontent.com/first20hours/google-10000-english/master/google-10000-english-no-swears.txt', function(passwordFile) {
84+
$.get('https://raw.githubusercontent.com/first20hours/google-10000-english/master/20k.txt', function(passwordFile) {
8585
var passwords = (passwordFile.split(/\s+/) // Ignore different line endings
8686
.filter(word => word.length > 3 && word.length < 9) // One to three letter words are mostly rubbish. Too long is a pain to enter.
8787
);

0 commit comments

Comments
 (0)