]> eyrie.org Git - kerberos/krb5-strength.git/blob - tests/data/passwords/sqlite.json
2b361af0ae270abe9c4d31d64e296dc62245c412
[kerberos/krb5-strength.git] / tests / data / passwords / sqlite.json
1 [
2     {
3         "name": "good password",
4         "principal": "test@EXAMPLE.ORG",
5         "password": "known good password",
6         "code": 0
7     },
8     {
9         "name": "in dictionary",
10         "principal": "test@EXAMPLE.ORG",
11         "password": "password",
12         "code": "KADM5_PASS_Q_DICT",
13         "error": "password found in list of common passwords"
14     },
15     {
16         "name": "in dictionary (longer)",
17         "principal": "test@EXAMPLE.ORG",
18         "password": "bitterbane",
19         "code": "KADM5_PASS_Q_DICT",
20         "error": "password found in list of common passwords"
21     },
22     {
23         "name": "in dictionary (drop first)",
24         "principal": "test@EXAMPLE.ORG",
25         "password": "1bitterbane",
26         "code": "KADM5_PASS_Q_DICT",
27         "error": "password found in list of common passwords"
28     },
29     {
30         "name": "in dictionary (drop last)",
31         "principal": "test@EXAMPLE.ORG",
32         "password": "bitterbane1",
33         "code": "KADM5_PASS_Q_DICT",
34         "error": "password found in list of common passwords"
35     },
36     {
37         "name": "dictionary with three characters",
38         "principal": "test@EXAMPLE.ORG",
39         "password": "bitterbane123",
40         "code": 0
41     },
42     {
43         "name": "two-character dictionary word",
44         "principal": "test@EXAMPLE.ORG",
45         "password": "ab",
46         "code": "KADM5_PASS_Q_DICT",
47         "error": "password found in list of common passwords"
48     },
49     {
50         "name": "three-character dictionary word",
51         "principal": "test@EXAMPLE.ORG",
52         "password": "one",
53         "code": "KADM5_PASS_Q_DICT",
54         "error": "password found in list of common passwords"
55     },
56     {
57         "name": "single-character password",
58         "principal": "test@EXAMPLE.ORG",
59         "password": "a",
60         "code": 0
61     },
62     {
63         "name": "in dictionary (edit: delete 1)",
64         "principal": "test@EXAMPLE.ORG",
65         "password": "itterbane",
66         "code": "KADM5_PASS_Q_DICT",
67         "error": "password found in list of common passwords"
68     },
69     {
70         "name": "in dictionary (edit: delete 2)",
71         "principal": "test@EXAMPLE.ORG",
72         "password": "btterbane",
73         "code": "KADM5_PASS_Q_DICT",
74         "error": "password found in list of common passwords"
75     },
76     {
77         "name": "in dictionary (edit: delete 3/4)",
78         "principal": "test@EXAMPLE.ORG",
79         "password": "biterbane",
80         "code": "KADM5_PASS_Q_DICT",
81         "error": "password found in list of common passwords"
82     },
83     {
84         "name": "in dictionary (edit: delete 5)",
85         "principal": "test@EXAMPLE.ORG",
86         "password": "bittrbane",
87         "code": "KADM5_PASS_Q_DICT",
88         "error": "password found in list of common passwords"
89     },
90     {
91         "name": "in dictionary (edit: delete 6)",
92         "principal": "test@EXAMPLE.ORG",
93         "password": "bittebane",
94         "code": "KADM5_PASS_Q_DICT",
95         "error": "password found in list of common passwords"
96     },
97     {
98         "name": "in dictionary (edit: delete 7)",
99         "principal": "test@EXAMPLE.ORG",
100         "password": "bitterane",
101         "code": "KADM5_PASS_Q_DICT",
102         "error": "password found in list of common passwords"
103     },
104     {
105         "name": "in dictionary (edit: delete 8)",
106         "principal": "test@EXAMPLE.ORG",
107         "password": "bitterbne",
108         "code": "KADM5_PASS_Q_DICT",
109         "error": "password found in list of common passwords"
110     },
111     {
112         "name": "in dictionary (edit: delete 9)",
113         "principal": "test@EXAMPLE.ORG",
114         "password": "bitterbae",
115         "code": "KADM5_PASS_Q_DICT",
116         "error": "password found in list of common passwords"
117     },
118     {
119         "name": "in dictionary (edit: delete 10)",
120         "principal": "test@EXAMPLE.ORG",
121         "password": "bitterban",
122         "code": "KADM5_PASS_Q_DICT",
123         "error": "password found in list of common passwords"
124     },
125     {
126         "name": "in dictionary (edit: modify 1)",
127         "principal": "test@EXAMPLE.ORG",
128         "password": "Citterbane",
129         "code": "KADM5_PASS_Q_DICT",
130         "error": "password found in list of common passwords"
131     },
132     {
133         "name": "in dictionary (edit: modify 2)",
134         "principal": "test@EXAMPLE.ORG",
135         "password": "b7tterbane",
136         "code": "KADM5_PASS_Q_DICT",
137         "error": "password found in list of common passwords"
138     },
139     {
140         "name": "in dictionary (edit: modify 3)",
141         "principal": "test@EXAMPLE.ORG",
142         "password": "bi#terbane",
143         "code": "KADM5_PASS_Q_DICT",
144         "error": "password found in list of common passwords"
145     },
146     {
147         "name": "in dictionary (edit: modify 4)",
148         "principal": "test@EXAMPLE.ORG",
149         "password": "bit*erbane",
150         "code": "KADM5_PASS_Q_DICT",
151         "error": "password found in list of common passwords"
152     },
153     {
154         "name": "in dictionary (edit: modify 5)",
155         "principal": "test@EXAMPLE.ORG",
156         "password": "bittgrbane",
157         "code": "KADM5_PASS_Q_DICT",
158         "error": "password found in list of common passwords"
159     },
160     {
161         "name": "in dictionary (edit: modify 6)",
162         "principal": "test@EXAMPLE.ORG",
163         "password": "bitte.bane",
164         "code": "KADM5_PASS_Q_DICT",
165         "error": "password found in list of common passwords"
166     },
167     {
168         "name": "in dictionary (edit: modify 7)",
169         "principal": "test@EXAMPLE.ORG",
170         "password": "bitter ane",
171         "code": "KADM5_PASS_Q_DICT",
172         "error": "password found in list of common passwords"
173     },
174     {
175         "name": "in dictionary (edit: modify 8)",
176         "principal": "test@EXAMPLE.ORG",
177         "password": "bitterb-ne",
178         "code": "KADM5_PASS_Q_DICT",
179         "error": "password found in list of common passwords"
180     },
181     {
182         "name": "in dictionary (edit: modify 9)",
183         "principal": "test@EXAMPLE.ORG",
184         "password": "bitterbame",
185         "code": "KADM5_PASS_Q_DICT",
186         "error": "password found in list of common passwords"
187     },
188     {
189         "name": "in dictionary (edit: modify 10)",
190         "principal": "test@EXAMPLE.ORG",
191         "password": "bitterbanq",
192         "code": "KADM5_PASS_Q_DICT",
193         "error": "password found in list of common passwords"
194     },
195     {
196         "name": "in dictionary (edit: add 2)",
197         "principal": "test@EXAMPLE.ORG",
198         "password": "b7itterbane",
199         "code": "KADM5_PASS_Q_DICT",
200         "error": "password found in list of common passwords"
201     },
202     {
203         "name": "in dictionary (edit: add 3)",
204         "principal": "test@EXAMPLE.ORG",
205         "password": "bi#tterbane",
206         "code": "KADM5_PASS_Q_DICT",
207         "error": "password found in list of common passwords"
208     },
209     {
210         "name": "in dictionary (edit: add 4)",
211         "principal": "test@EXAMPLE.ORG",
212         "password": "bit*terbane",
213         "code": "KADM5_PASS_Q_DICT",
214         "error": "password found in list of common passwords"
215     },
216     {
217         "name": "in dictionary (edit: add 4)",
218         "principal": "test@EXAMPLE.ORG",
219         "password": "bit*terbane",
220         "code": "KADM5_PASS_Q_DICT",
221         "error": "password found in list of common passwords"
222     },
223     {
224         "name": "in dictionary (edit: add 5)",
225         "principal": "test@EXAMPLE.ORG",
226         "password": "bittgerbane",
227         "code": "KADM5_PASS_Q_DICT",
228         "error": "password found in list of common passwords"
229     },
230     {
231         "name": "in dictionary (edit: add 6)",
232         "principal": "test@EXAMPLE.ORG",
233         "password": "bitte.rbane",
234         "code": "KADM5_PASS_Q_DICT",
235         "error": "password found in list of common passwords"
236     },
237     {
238         "name": "in dictionary (edit: add 7)",
239         "principal": "test@EXAMPLE.ORG",
240         "password": "bitter bane",
241         "code": "KADM5_PASS_Q_DICT",
242         "error": "password found in list of common passwords"
243     },
244     {
245         "name": "in dictionary (edit: add 8)",
246         "principal": "test@EXAMPLE.ORG",
247         "password": "bitterb-ane",
248         "code": "KADM5_PASS_Q_DICT",
249         "error": "password found in list of common passwords"
250     },
251     {
252         "name": "in dictionary (edit: add 9)",
253         "principal": "test@EXAMPLE.ORG",
254         "password": "bitterbamne",
255         "code": "KADM5_PASS_Q_DICT",
256         "error": "password found in list of common passwords"
257     },
258     {
259         "name": "in dictionary (edit: add 10)",
260         "principal": "test@EXAMPLE.ORG",
261         "password": "bitterbanqe",
262         "code": "KADM5_PASS_Q_DICT",
263         "error": "password found in list of common passwords"
264     }
265 ]