-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdictionary.js
More file actions
13 lines (9 loc) · 1.21 KB
/
dictionary.js
File metadata and controls
13 lines (9 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
function Dictionary() {
// to convert dictionary txt to array you can use online tools
this.getDictionary = function () {
return this.getRockYou();
}
this.getRockYou = function () {
return ['123456', '12345', '123456789', 'password', 'iloveyou', 'princess', '1234567', 'rockyou', '12345678', 'abc123', 'nicole', 'daniel', 'babygirl', 'monkey', 'lovely', 'jessica', '654321', 'michael', 'ashley', 'qwerty', '111111', 'iloveu', '000000', 'michelle', 'tigger', 'sunshine', 'chocolate', 'password1', 'soccer', 'anthony', 'friends', 'butterfly', 'purple', 'angel', 'jordan', 'liverpool', 'justin', 'loveme', 'fuckyou', '123123', 'football', 'secret', 'andrea', 'carlos', 'jennifer', 'joshua', 'bubbles', '1234567890', 'superman', 'hannah', 'amanda', 'loveyou', 'pretty', 'basketball', 'andrew', 'angels', 'tweety', 'flower', 'playboy', 'hello', 'elizabeth', 'hottie', 'tinkerbell', 'charlie', 'samantha', 'barbie', 'chelsea', 'lovers', 'teamo', 'jasmine', 'brandon', '666666', 'shadow', 'melissa', 'eminem', 'matthew', 'robert', 'danielle', 'forever', 'family', 'jonathan', '987654321', 'computer', 'whatever', 'dragon', 'vanessa', 'cookie', 'naruto', 'summer', 'sweety', 'spongebob', 'joseph', 'junior'];
}
}