@protontech/autofill 0.0.22991789 → 0.0.33690782
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/constants/features.d.ts +1 -0
- package/constants/features.js +1 -0
- package/constants/heuristics.d.ts +5 -4
- package/constants/heuristics.js +5 -10
- package/constants/selectors.d.ts +13 -7
- package/constants/selectors.js +29 -17
- package/debug.d.ts +24 -1
- package/debug.js +15 -13
- package/dictionary/generate.js +30 -21
- package/dictionary/generated/dictionary.d.ts +18 -4
- package/dictionary/generated/dictionary.js +31 -17
- package/dictionary/source/dictionary.d.ts +4 -3
- package/dictionary/source/dictionary.js +155 -89
- package/dictionary/source/patterns.js +2 -2
- package/features/feature.d.ts +17 -0
- package/features/feature.js +72 -0
- package/features/feature.spec.d.ts +1 -0
- package/features/feature.spec.js +55 -0
- package/features/v1/abstract.field.d.ts +20401 -0
- package/features/v1/abstract.field.js +95 -0
- package/features/v1/abstract.form.d.ts +1226 -0
- package/features/v1/abstract.form.js +336 -0
- package/features/v1/field.email.d.ts +62 -0
- package/features/v1/field.email.js +27 -0
- package/features/v1/field.otp.d.ts +142 -0
- package/features/v1/field.otp.js +105 -0
- package/features/v1/field.password.d.ts +162 -0
- package/features/v1/field.password.js +81 -0
- package/features/v1/field.username-hidden.d.ts +62 -0
- package/features/v1/field.username-hidden.js +25 -0
- package/features/v1/field.username.d.ts +72 -0
- package/features/v1/field.username.js +31 -0
- package/features/v1/index.d.ts +4427 -0
- package/features/v1/index.js +22 -0
- package/features/v1/index.spec.d.ts +1 -0
- package/features/v1/index.spec.js +30 -0
- package/index.d.ts +5 -2
- package/index.js +10 -3
- package/models/perceptron/index.d.ts +2 -0
- package/models/perceptron/index.js +27 -0
- package/models/perceptron/params/email-model.json +53 -0
- package/models/perceptron/params/login-model.json +465 -0
- package/models/perceptron/params/new-password-model.json +133 -0
- package/models/perceptron/params/otp-model.json +117 -0
- package/models/perceptron/params/password-change-model.json +465 -0
- package/models/perceptron/params/password-model.json +133 -0
- package/models/perceptron/params/recovery-model.json +465 -0
- package/models/perceptron/params/register-model.json +465 -0
- package/models/perceptron/params/username-hidden-model.json +53 -0
- package/models/perceptron/params/username-model.json +61 -0
- package/models/prod_20240829/index.d.ts +2 -0
- package/models/prod_20240829/index.js +27 -0
- package/models/prod_20240829/params/email-model.json +45 -0
- package/models/prod_20240829/params/login-model.json +421 -0
- package/models/prod_20240829/params/new-password-model.json +125 -0
- package/models/prod_20240829/params/otp-model.json +153 -0
- package/models/prod_20240829/params/password-change-model.json +421 -0
- package/models/prod_20240829/params/password-model.json +125 -0
- package/models/prod_20240829/params/recovery-model.json +421 -0
- package/models/prod_20240829/params/register-model.json +421 -0
- package/models/prod_20240829/params/username-hidden-model.json +41 -0
- package/models/prod_20240829/params/username-model.json +45 -0
- package/models/random_forest/index.d.ts +2 -0
- package/models/random_forest/index.js +27 -0
- package/models/random_forest/params/email-model.json +1456 -0
- package/models/random_forest/params/login-model.json +4194 -0
- package/models/random_forest/params/new-password-model.json +1448 -0
- package/models/random_forest/params/otp-model.json +2004 -0
- package/models/random_forest/params/password-change-model.json +1422 -0
- package/models/random_forest/params/password-model.json +1292 -0
- package/models/random_forest/params/recovery-model.json +2754 -0
- package/models/random_forest/params/register-model.json +3678 -0
- package/models/random_forest/params/username-hidden-model.json +1108 -0
- package/models/random_forest/params/username-model.json +1052 -0
- package/models/v1/index.d.ts +2 -0
- package/models/v1/index.js +35 -0
- package/package.json +14 -15
- package/rules/v1/index.d.ts +3 -0
- package/rules/v1/index.js +69 -0
- package/rulesets.d.ts +2 -2
- package/rulesets.js +11 -10
- package/types/index.d.ts +72 -17
- package/types/index.js +35 -2
- package/utils/attributes.js +1 -1
- package/utils/clustering.js +18 -5
- package/utils/credit-card.d.ts +32 -0
- package/utils/credit-card.js +259 -0
- package/utils/credit-card.samples.spec.d.ts +1 -0
- package/utils/credit-card.samples.spec.js +452 -0
- package/utils/credit-card.spec.d.ts +1 -0
- package/utils/credit-card.spec.js +296 -0
- package/utils/dom.d.ts +3 -2
- package/utils/dom.js +12 -7
- package/utils/exclusion.d.ts +1 -0
- package/utils/exclusion.js +22 -10
- package/utils/extract.d.ts +1 -0
- package/utils/extract.js +26 -7
- package/utils/fathom.d.ts +10 -23
- package/utils/fathom.js +7 -12
- package/utils/field.d.ts +12 -4
- package/utils/field.js +25 -14
- package/utils/flags.d.ts +9 -3
- package/utils/flags.js +27 -9
- package/utils/form.d.ts +16 -5
- package/utils/form.js +35 -14
- package/utils/identity.d.ts +12 -21
- package/utils/identity.js +66 -41
- package/utils/identity.samples.spec.d.ts +1 -0
- package/utils/identity.samples.spec.js +28 -0
- package/utils/iframe.d.ts +2 -0
- package/utils/iframe.js +22 -0
- package/utils/overrides.d.ts +19 -0
- package/utils/overrides.js +40 -0
- package/utils/prepass.js +6 -4
- package/utils/re.d.ts +19 -4
- package/utils/re.js +22 -7
- package/utils/re.spec.d.ts +1 -0
- package/utils/re.spec.js +62 -0
- package/utils/shadow-dom.d.ts +8 -0
- package/utils/shadow-dom.js +53 -0
- package/utils/shadow-dom.spec.d.ts +1 -0
- package/utils/shadow-dom.spec.js +215 -0
- package/utils/visible.d.ts +3 -2
- package/utils/visible.js +42 -22
- package/cli.d.ts +0 -2
- package/cli.js +0 -128
- package/features/abstract.field.d.ts +0 -123
- package/features/abstract.field.js +0 -63
- package/features/abstract.form.d.ts +0 -98
- package/features/abstract.form.js +0 -281
- package/features/field.email.d.ts +0 -18
- package/features/field.email.js +0 -43
- package/features/field.otp.d.ts +0 -36
- package/features/field.otp.js +0 -116
- package/features/field.password.d.ts +0 -35
- package/features/field.password.js +0 -104
- package/features/field.username-hidden.d.ts +0 -15
- package/features/field.username-hidden.js +0 -40
- package/features/field.username.d.ts +0 -16
- package/features/field.username.js +0 -41
- package/features/form.combined.d.ts +0 -1
- package/features/form.combined.js +0 -6
- package/trainees/field.email.d.ts +0 -2
- package/trainees/field.email.js +0 -16
- package/trainees/field.identity.d.ts +0 -2
- package/trainees/field.identity.js +0 -9
- package/trainees/field.otp.d.ts +0 -2
- package/trainees/field.otp.js +0 -16
- package/trainees/field.password.current.d.ts +0 -2
- package/trainees/field.password.current.js +0 -16
- package/trainees/field.password.new.d.ts +0 -2
- package/trainees/field.password.new.js +0 -16
- package/trainees/field.username-hidden.d.ts +0 -2
- package/trainees/field.username-hidden.js +0 -22
- package/trainees/field.username.d.ts +0 -2
- package/trainees/field.username.js +0 -16
- package/trainees/form.login.d.ts +0 -2
- package/trainees/form.login.js +0 -16
- package/trainees/form.noop.d.ts +0 -1
- package/trainees/form.noop.js +0 -7
- package/trainees/form.password-change.d.ts +0 -2
- package/trainees/form.password-change.js +0 -16
- package/trainees/form.recovery.d.ts +0 -2
- package/trainees/form.recovery.js +0 -16
- package/trainees/form.register.d.ts +0 -2
- package/trainees/form.register.js +0 -16
- package/trainees/index.d.ts +0 -9
- package/trainees/index.js +0 -72
- package/trainees/results/result.email.d.ts +0 -2
- package/trainees/results/result.email.js +0 -17
- package/trainees/results/result.login.d.ts +0 -2
- package/trainees/results/result.login.js +0 -110
- package/trainees/results/result.new-password.d.ts +0 -2
- package/trainees/results/result.new-password.js +0 -36
- package/trainees/results/result.otp.d.ts +0 -2
- package/trainees/results/result.otp.js +0 -43
- package/trainees/results/result.password-change.d.ts +0 -2
- package/trainees/results/result.password-change.js +0 -110
- package/trainees/results/result.password.d.ts +0 -2
- package/trainees/results/result.password.js +0 -36
- package/trainees/results/result.recovery.d.ts +0 -2
- package/trainees/results/result.recovery.js +0 -110
- package/trainees/results/result.register.d.ts +0 -2
- package/trainees/results/result.register.js +0 -110
- package/trainees/results/result.username-hidden.d.ts +0 -2
- package/trainees/results/result.username-hidden.js +0 -15
- package/trainees/results/result.username.d.ts +0 -2
- package/trainees/results/result.username.js +0 -16
- package/utils/memoize.d.ts +0 -5
- package/utils/memoize.js +0 -12
|
@@ -0,0 +1,421 @@
|
|
|
1
|
+
{
|
|
2
|
+
"coeffs": [
|
|
3
|
+
[
|
|
4
|
+
"recovery--visibleFieldsCountScaled",
|
|
5
|
+
5.219259262084961
|
|
6
|
+
],
|
|
7
|
+
[
|
|
8
|
+
"recovery--visibleInputsCountScaled",
|
|
9
|
+
3.4802393913269043
|
|
10
|
+
],
|
|
11
|
+
[
|
|
12
|
+
"recovery--fieldsetsCountScaled",
|
|
13
|
+
5.091477394104004
|
|
14
|
+
],
|
|
15
|
+
[
|
|
16
|
+
"recovery--textsCountScaled",
|
|
17
|
+
-1.9329952001571655
|
|
18
|
+
],
|
|
19
|
+
[
|
|
20
|
+
"recovery--textareasCountScaled",
|
|
21
|
+
-11.980330467224121
|
|
22
|
+
],
|
|
23
|
+
[
|
|
24
|
+
"recovery--selectsCountScaled",
|
|
25
|
+
-7.090891361236572
|
|
26
|
+
],
|
|
27
|
+
[
|
|
28
|
+
"recovery--optionsCountScaled",
|
|
29
|
+
-7.454675197601318
|
|
30
|
+
],
|
|
31
|
+
[
|
|
32
|
+
"recovery--radiosCountScaled",
|
|
33
|
+
-5.982324600219727
|
|
34
|
+
],
|
|
35
|
+
[
|
|
36
|
+
"recovery--identifiersCountScaled",
|
|
37
|
+
0.24470239877700806
|
|
38
|
+
],
|
|
39
|
+
[
|
|
40
|
+
"recovery--hiddenIdentifiersCountScaled",
|
|
41
|
+
-13.423789024353027
|
|
42
|
+
],
|
|
43
|
+
[
|
|
44
|
+
"recovery--usernamesCountScaled",
|
|
45
|
+
7.580615997314453
|
|
46
|
+
],
|
|
47
|
+
[
|
|
48
|
+
"recovery--emailsCountScaled",
|
|
49
|
+
-0.7749595642089844
|
|
50
|
+
],
|
|
51
|
+
[
|
|
52
|
+
"recovery--hiddenCountScaled",
|
|
53
|
+
7.397370338439941
|
|
54
|
+
],
|
|
55
|
+
[
|
|
56
|
+
"recovery--hiddenPasswordsCountScaled",
|
|
57
|
+
-10.402884483337402
|
|
58
|
+
],
|
|
59
|
+
[
|
|
60
|
+
"recovery--submitsCountScaled",
|
|
61
|
+
17.34208869934082
|
|
62
|
+
],
|
|
63
|
+
[
|
|
64
|
+
"recovery--hasTels",
|
|
65
|
+
-1.2667042016983032
|
|
66
|
+
],
|
|
67
|
+
[
|
|
68
|
+
"recovery--hasOAuth",
|
|
69
|
+
-14.191985130310059
|
|
70
|
+
],
|
|
71
|
+
[
|
|
72
|
+
"recovery--hasCaptchas",
|
|
73
|
+
4.94380521774292
|
|
74
|
+
],
|
|
75
|
+
[
|
|
76
|
+
"recovery--hasFiles",
|
|
77
|
+
-22.454086303710938
|
|
78
|
+
],
|
|
79
|
+
[
|
|
80
|
+
"recovery--hasDate",
|
|
81
|
+
-6.028102874755859
|
|
82
|
+
],
|
|
83
|
+
[
|
|
84
|
+
"recovery--hasNumber",
|
|
85
|
+
-5.915408134460449
|
|
86
|
+
],
|
|
87
|
+
[
|
|
88
|
+
"recovery--oneVisibleField",
|
|
89
|
+
-4.2500810623168945
|
|
90
|
+
],
|
|
91
|
+
[
|
|
92
|
+
"recovery--twoVisibleFields",
|
|
93
|
+
-4.5695953369140625
|
|
94
|
+
],
|
|
95
|
+
[
|
|
96
|
+
"recovery--threeOrMoreVisibleFields",
|
|
97
|
+
1.8211472034454346
|
|
98
|
+
],
|
|
99
|
+
[
|
|
100
|
+
"recovery--noPasswords",
|
|
101
|
+
-1.9446848630905151
|
|
102
|
+
],
|
|
103
|
+
[
|
|
104
|
+
"recovery--onePassword",
|
|
105
|
+
-12.154842376708984
|
|
106
|
+
],
|
|
107
|
+
[
|
|
108
|
+
"recovery--twoPasswords",
|
|
109
|
+
-6.388713359832764
|
|
110
|
+
],
|
|
111
|
+
[
|
|
112
|
+
"recovery--threeOrMorePasswords",
|
|
113
|
+
-5.9903340339660645
|
|
114
|
+
],
|
|
115
|
+
[
|
|
116
|
+
"recovery--noIdentifiers",
|
|
117
|
+
-12.915245056152344
|
|
118
|
+
],
|
|
119
|
+
[
|
|
120
|
+
"recovery--oneIdentifier",
|
|
121
|
+
1.9877134561538696
|
|
122
|
+
],
|
|
123
|
+
[
|
|
124
|
+
"recovery--twoIdentifiers",
|
|
125
|
+
-3.45326828956604
|
|
126
|
+
],
|
|
127
|
+
[
|
|
128
|
+
"recovery--threeOrMoreIdentifiers",
|
|
129
|
+
-8.09775161743164
|
|
130
|
+
],
|
|
131
|
+
[
|
|
132
|
+
"recovery--autofocusedIsIdentifier",
|
|
133
|
+
1.188584804534912
|
|
134
|
+
],
|
|
135
|
+
[
|
|
136
|
+
"recovery--autofocusedIsPassword",
|
|
137
|
+
-6.050867080688477
|
|
138
|
+
],
|
|
139
|
+
[
|
|
140
|
+
"recovery--visibleRatio",
|
|
141
|
+
1.8096098899841309
|
|
142
|
+
],
|
|
143
|
+
[
|
|
144
|
+
"recovery--inputRatio",
|
|
145
|
+
-6.735170364379883
|
|
146
|
+
],
|
|
147
|
+
[
|
|
148
|
+
"recovery--hiddenRatio",
|
|
149
|
+
-1.901351809501648
|
|
150
|
+
],
|
|
151
|
+
[
|
|
152
|
+
"recovery--identifierRatio",
|
|
153
|
+
2.0203499794006348
|
|
154
|
+
],
|
|
155
|
+
[
|
|
156
|
+
"recovery--emailRatio",
|
|
157
|
+
0.9475768804550171
|
|
158
|
+
],
|
|
159
|
+
[
|
|
160
|
+
"recovery--usernameRatio",
|
|
161
|
+
7.2057600021362305
|
|
162
|
+
],
|
|
163
|
+
[
|
|
164
|
+
"recovery--passwordRatio",
|
|
165
|
+
-9.867918968200684
|
|
166
|
+
],
|
|
167
|
+
[
|
|
168
|
+
"recovery--requiredRatio",
|
|
169
|
+
-1.6640514135360718
|
|
170
|
+
],
|
|
171
|
+
[
|
|
172
|
+
"recovery--checkboxRatio",
|
|
173
|
+
-5.932979583740234
|
|
174
|
+
],
|
|
175
|
+
[
|
|
176
|
+
"recovery--pageLogin",
|
|
177
|
+
-2.4858222007751465
|
|
178
|
+
],
|
|
179
|
+
[
|
|
180
|
+
"recovery--formTextLogin",
|
|
181
|
+
-5.925143718719482
|
|
182
|
+
],
|
|
183
|
+
[
|
|
184
|
+
"recovery--formAttrsLogin",
|
|
185
|
+
-0.08413530886173248
|
|
186
|
+
],
|
|
187
|
+
[
|
|
188
|
+
"recovery--headingsLogin",
|
|
189
|
+
6.476242542266846
|
|
190
|
+
],
|
|
191
|
+
[
|
|
192
|
+
"recovery--layoutLogin",
|
|
193
|
+
-12.630494117736816
|
|
194
|
+
],
|
|
195
|
+
[
|
|
196
|
+
"recovery--rememberMeCheckbox",
|
|
197
|
+
-5.997462272644043
|
|
198
|
+
],
|
|
199
|
+
[
|
|
200
|
+
"recovery--troubleLink",
|
|
201
|
+
8.869538307189941
|
|
202
|
+
],
|
|
203
|
+
[
|
|
204
|
+
"recovery--submitLogin",
|
|
205
|
+
-5.894786834716797
|
|
206
|
+
],
|
|
207
|
+
[
|
|
208
|
+
"recovery--pageRegister",
|
|
209
|
+
-10.688661575317383
|
|
210
|
+
],
|
|
211
|
+
[
|
|
212
|
+
"recovery--formTextRegister",
|
|
213
|
+
-0.07053083181381226
|
|
214
|
+
],
|
|
215
|
+
[
|
|
216
|
+
"recovery--formAttrsRegister",
|
|
217
|
+
-8.1167573928833
|
|
218
|
+
],
|
|
219
|
+
[
|
|
220
|
+
"recovery--headingsRegister",
|
|
221
|
+
-8.343093872070312
|
|
222
|
+
],
|
|
223
|
+
[
|
|
224
|
+
"recovery--layoutRegister",
|
|
225
|
+
-10.727327346801758
|
|
226
|
+
],
|
|
227
|
+
[
|
|
228
|
+
"recovery--newPasswordRegister",
|
|
229
|
+
-5.970903396606445
|
|
230
|
+
],
|
|
231
|
+
[
|
|
232
|
+
"recovery--newPasswordConfirmRegister",
|
|
233
|
+
-6.094449996948242
|
|
234
|
+
],
|
|
235
|
+
[
|
|
236
|
+
"recovery--submitRegister",
|
|
237
|
+
-6.537256717681885
|
|
238
|
+
],
|
|
239
|
+
[
|
|
240
|
+
"recovery--TOSRef",
|
|
241
|
+
-16.483572006225586
|
|
242
|
+
],
|
|
243
|
+
[
|
|
244
|
+
"recovery--pagePasswordReset",
|
|
245
|
+
9.253317832946777
|
|
246
|
+
],
|
|
247
|
+
[
|
|
248
|
+
"recovery--formTextPasswordReset",
|
|
249
|
+
-6.472717761993408
|
|
250
|
+
],
|
|
251
|
+
[
|
|
252
|
+
"recovery--formAttrsPasswordReset",
|
|
253
|
+
3.489095687866211
|
|
254
|
+
],
|
|
255
|
+
[
|
|
256
|
+
"recovery--headingsPasswordReset",
|
|
257
|
+
7.393299579620361
|
|
258
|
+
],
|
|
259
|
+
[
|
|
260
|
+
"recovery--layoutPasswordReset",
|
|
261
|
+
7.859417915344238
|
|
262
|
+
],
|
|
263
|
+
[
|
|
264
|
+
"recovery--pageRecovery",
|
|
265
|
+
15.275426864624023
|
|
266
|
+
],
|
|
267
|
+
[
|
|
268
|
+
"recovery--formTextRecovery",
|
|
269
|
+
0.08355202525854111
|
|
270
|
+
],
|
|
271
|
+
[
|
|
272
|
+
"recovery--formAttrsRecovery",
|
|
273
|
+
15.822127342224121
|
|
274
|
+
],
|
|
275
|
+
[
|
|
276
|
+
"recovery--headingsRecovery",
|
|
277
|
+
10.05958366394043
|
|
278
|
+
],
|
|
279
|
+
[
|
|
280
|
+
"recovery--layoutRecovery",
|
|
281
|
+
0.8675701022148132
|
|
282
|
+
],
|
|
283
|
+
[
|
|
284
|
+
"recovery--identifierRecovery",
|
|
285
|
+
17.785898208618164
|
|
286
|
+
],
|
|
287
|
+
[
|
|
288
|
+
"recovery--submitRecovery",
|
|
289
|
+
17.075572967529297
|
|
290
|
+
],
|
|
291
|
+
[
|
|
292
|
+
"recovery--formTextMFA",
|
|
293
|
+
-1.6202266216278076
|
|
294
|
+
],
|
|
295
|
+
[
|
|
296
|
+
"recovery--formAttrsMFA",
|
|
297
|
+
12.503120422363281
|
|
298
|
+
],
|
|
299
|
+
[
|
|
300
|
+
"recovery--inputsMFA",
|
|
301
|
+
-15.698631286621094
|
|
302
|
+
],
|
|
303
|
+
[
|
|
304
|
+
"recovery--inputsOTP",
|
|
305
|
+
-9.031906127929688
|
|
306
|
+
],
|
|
307
|
+
[
|
|
308
|
+
"recovery--newsletterForm",
|
|
309
|
+
-11.783472061157227
|
|
310
|
+
],
|
|
311
|
+
[
|
|
312
|
+
"recovery--searchForm",
|
|
313
|
+
-11.046648979187012
|
|
314
|
+
],
|
|
315
|
+
[
|
|
316
|
+
"recovery--multistepForm",
|
|
317
|
+
3.962646722793579
|
|
318
|
+
],
|
|
319
|
+
[
|
|
320
|
+
"recovery--multiAuthForm",
|
|
321
|
+
-6.030735969543457
|
|
322
|
+
],
|
|
323
|
+
[
|
|
324
|
+
"recovery--visibleRatio,visibleFieldsCountScaled",
|
|
325
|
+
-3.6750259399414062
|
|
326
|
+
],
|
|
327
|
+
[
|
|
328
|
+
"recovery--visibleRatio,identifiersCountScaled",
|
|
329
|
+
-0.46854108572006226
|
|
330
|
+
],
|
|
331
|
+
[
|
|
332
|
+
"recovery--visibleRatio,passwordsCountScaled",
|
|
333
|
+
-8.827977180480957
|
|
334
|
+
],
|
|
335
|
+
[
|
|
336
|
+
"recovery--visibleRatio,hiddenIdentifiersCountScaled",
|
|
337
|
+
-7.780083656311035
|
|
338
|
+
],
|
|
339
|
+
[
|
|
340
|
+
"recovery--visibleRatio,hiddenPasswordsCountScaled",
|
|
341
|
+
-14.793699264526367
|
|
342
|
+
],
|
|
343
|
+
[
|
|
344
|
+
"recovery--visibleRatio,multistepForm",
|
|
345
|
+
1.725805401802063
|
|
346
|
+
],
|
|
347
|
+
[
|
|
348
|
+
"recovery--identifierRatio,visibleFieldsCountScaled",
|
|
349
|
+
2.5540273189544678
|
|
350
|
+
],
|
|
351
|
+
[
|
|
352
|
+
"recovery--identifierRatio,identifiersCountScaled",
|
|
353
|
+
3.680723190307617
|
|
354
|
+
],
|
|
355
|
+
[
|
|
356
|
+
"recovery--identifierRatio,passwordsCountScaled",
|
|
357
|
+
-11.473299980163574
|
|
358
|
+
],
|
|
359
|
+
[
|
|
360
|
+
"recovery--identifierRatio,hiddenIdentifiersCountScaled",
|
|
361
|
+
-18.763864517211914
|
|
362
|
+
],
|
|
363
|
+
[
|
|
364
|
+
"recovery--identifierRatio,hiddenPasswordsCountScaled",
|
|
365
|
+
-15.784345626831055
|
|
366
|
+
],
|
|
367
|
+
[
|
|
368
|
+
"recovery--identifierRatio,multistepForm",
|
|
369
|
+
-0.08650737255811691
|
|
370
|
+
],
|
|
371
|
+
[
|
|
372
|
+
"recovery--passwordRatio,visibleFieldsCountScaled",
|
|
373
|
+
-11.390311241149902
|
|
374
|
+
],
|
|
375
|
+
[
|
|
376
|
+
"recovery--passwordRatio,identifiersCountScaled",
|
|
377
|
+
-11.758790016174316
|
|
378
|
+
],
|
|
379
|
+
[
|
|
380
|
+
"recovery--passwordRatio,passwordsCountScaled",
|
|
381
|
+
-9.361132621765137
|
|
382
|
+
],
|
|
383
|
+
[
|
|
384
|
+
"recovery--passwordRatio,hiddenIdentifiersCountScaled",
|
|
385
|
+
-6.076198101043701
|
|
386
|
+
],
|
|
387
|
+
[
|
|
388
|
+
"recovery--passwordRatio,hiddenPasswordsCountScaled",
|
|
389
|
+
-5.9201741218566895
|
|
390
|
+
],
|
|
391
|
+
[
|
|
392
|
+
"recovery--passwordRatio,multistepForm",
|
|
393
|
+
-6.187673091888428
|
|
394
|
+
],
|
|
395
|
+
[
|
|
396
|
+
"recovery--requiredRatio,visibleFieldsCountScaled",
|
|
397
|
+
-20.665956497192383
|
|
398
|
+
],
|
|
399
|
+
[
|
|
400
|
+
"recovery--requiredRatio,identifiersCountScaled",
|
|
401
|
+
2.035646438598633
|
|
402
|
+
],
|
|
403
|
+
[
|
|
404
|
+
"recovery--requiredRatio,passwordsCountScaled",
|
|
405
|
+
-6.348474979400635
|
|
406
|
+
],
|
|
407
|
+
[
|
|
408
|
+
"recovery--requiredRatio,hiddenIdentifiersCountScaled",
|
|
409
|
+
23.868844985961914
|
|
410
|
+
],
|
|
411
|
+
[
|
|
412
|
+
"recovery--requiredRatio,hiddenPasswordsCountScaled",
|
|
413
|
+
-10.315682411193848
|
|
414
|
+
],
|
|
415
|
+
[
|
|
416
|
+
"recovery--requiredRatio,multistepForm",
|
|
417
|
+
-9.611449241638184
|
|
418
|
+
]
|
|
419
|
+
],
|
|
420
|
+
"bias": -5.56587028503418
|
|
421
|
+
}
|