@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
|
+
"login--visibleFieldsCountScaled",
|
|
5
|
+
6.9117207527160645
|
|
6
|
+
],
|
|
7
|
+
[
|
|
8
|
+
"login--visibleInputsCountScaled",
|
|
9
|
+
3.822486400604248
|
|
10
|
+
],
|
|
11
|
+
[
|
|
12
|
+
"login--fieldsetsCountScaled",
|
|
13
|
+
-18.91722297668457
|
|
14
|
+
],
|
|
15
|
+
[
|
|
16
|
+
"login--textsCountScaled",
|
|
17
|
+
-10.360284805297852
|
|
18
|
+
],
|
|
19
|
+
[
|
|
20
|
+
"login--textareasCountScaled",
|
|
21
|
+
-5.995274066925049
|
|
22
|
+
],
|
|
23
|
+
[
|
|
24
|
+
"login--selectsCountScaled",
|
|
25
|
+
-6.1306281089782715
|
|
26
|
+
],
|
|
27
|
+
[
|
|
28
|
+
"login--optionsCountScaled",
|
|
29
|
+
-6.087420463562012
|
|
30
|
+
],
|
|
31
|
+
[
|
|
32
|
+
"login--radiosCountScaled",
|
|
33
|
+
-5.951887607574463
|
|
34
|
+
],
|
|
35
|
+
[
|
|
36
|
+
"login--identifiersCountScaled",
|
|
37
|
+
-2.899953842163086
|
|
38
|
+
],
|
|
39
|
+
[
|
|
40
|
+
"login--hiddenIdentifiersCountScaled",
|
|
41
|
+
8.090394973754883
|
|
42
|
+
],
|
|
43
|
+
[
|
|
44
|
+
"login--usernamesCountScaled",
|
|
45
|
+
2.0640110969543457
|
|
46
|
+
],
|
|
47
|
+
[
|
|
48
|
+
"login--emailsCountScaled",
|
|
49
|
+
-9.865800857543945
|
|
50
|
+
],
|
|
51
|
+
[
|
|
52
|
+
"login--hiddenCountScaled",
|
|
53
|
+
5.637701988220215
|
|
54
|
+
],
|
|
55
|
+
[
|
|
56
|
+
"login--hiddenPasswordsCountScaled",
|
|
57
|
+
9.23979377746582
|
|
58
|
+
],
|
|
59
|
+
[
|
|
60
|
+
"login--submitsCountScaled",
|
|
61
|
+
-2.284073829650879
|
|
62
|
+
],
|
|
63
|
+
[
|
|
64
|
+
"login--hasTels",
|
|
65
|
+
-6.52845573425293
|
|
66
|
+
],
|
|
67
|
+
[
|
|
68
|
+
"login--hasOAuth",
|
|
69
|
+
6.302763938903809
|
|
70
|
+
],
|
|
71
|
+
[
|
|
72
|
+
"login--hasCaptchas",
|
|
73
|
+
2.9789769649505615
|
|
74
|
+
],
|
|
75
|
+
[
|
|
76
|
+
"login--hasFiles",
|
|
77
|
+
-6.02401876449585
|
|
78
|
+
],
|
|
79
|
+
[
|
|
80
|
+
"login--hasDate",
|
|
81
|
+
-19.489826202392578
|
|
82
|
+
],
|
|
83
|
+
[
|
|
84
|
+
"login--hasNumber",
|
|
85
|
+
-5.951311111450195
|
|
86
|
+
],
|
|
87
|
+
[
|
|
88
|
+
"login--oneVisibleField",
|
|
89
|
+
5.676862716674805
|
|
90
|
+
],
|
|
91
|
+
[
|
|
92
|
+
"login--twoVisibleFields",
|
|
93
|
+
7.535869598388672
|
|
94
|
+
],
|
|
95
|
+
[
|
|
96
|
+
"login--threeOrMoreVisibleFields",
|
|
97
|
+
-1.3183695077896118
|
|
98
|
+
],
|
|
99
|
+
[
|
|
100
|
+
"login--noPasswords",
|
|
101
|
+
-13.081375122070312
|
|
102
|
+
],
|
|
103
|
+
[
|
|
104
|
+
"login--onePassword",
|
|
105
|
+
10.25524616241455
|
|
106
|
+
],
|
|
107
|
+
[
|
|
108
|
+
"login--twoPasswords",
|
|
109
|
+
-11.755972862243652
|
|
110
|
+
],
|
|
111
|
+
[
|
|
112
|
+
"login--threeOrMorePasswords",
|
|
113
|
+
-6.044548988342285
|
|
114
|
+
],
|
|
115
|
+
[
|
|
116
|
+
"login--noIdentifiers",
|
|
117
|
+
-8.970521926879883
|
|
118
|
+
],
|
|
119
|
+
[
|
|
120
|
+
"login--oneIdentifier",
|
|
121
|
+
-2.0764057636260986
|
|
122
|
+
],
|
|
123
|
+
[
|
|
124
|
+
"login--twoIdentifiers",
|
|
125
|
+
-2.4918956756591797
|
|
126
|
+
],
|
|
127
|
+
[
|
|
128
|
+
"login--threeOrMoreIdentifiers",
|
|
129
|
+
-8.593513488769531
|
|
130
|
+
],
|
|
131
|
+
[
|
|
132
|
+
"login--autofocusedIsIdentifier",
|
|
133
|
+
8.622314453125
|
|
134
|
+
],
|
|
135
|
+
[
|
|
136
|
+
"login--autofocusedIsPassword",
|
|
137
|
+
14.90038013458252
|
|
138
|
+
],
|
|
139
|
+
[
|
|
140
|
+
"login--visibleRatio",
|
|
141
|
+
7.558108329772949
|
|
142
|
+
],
|
|
143
|
+
[
|
|
144
|
+
"login--inputRatio",
|
|
145
|
+
-4.814621925354004
|
|
146
|
+
],
|
|
147
|
+
[
|
|
148
|
+
"login--hiddenRatio",
|
|
149
|
+
-5.744090557098389
|
|
150
|
+
],
|
|
151
|
+
[
|
|
152
|
+
"login--identifierRatio",
|
|
153
|
+
10.3085298538208
|
|
154
|
+
],
|
|
155
|
+
[
|
|
156
|
+
"login--emailRatio",
|
|
157
|
+
1.5703213214874268
|
|
158
|
+
],
|
|
159
|
+
[
|
|
160
|
+
"login--usernameRatio",
|
|
161
|
+
-7.5780768394470215
|
|
162
|
+
],
|
|
163
|
+
[
|
|
164
|
+
"login--passwordRatio",
|
|
165
|
+
-1.3385310173034668
|
|
166
|
+
],
|
|
167
|
+
[
|
|
168
|
+
"login--requiredRatio",
|
|
169
|
+
1.6504578590393066
|
|
170
|
+
],
|
|
171
|
+
[
|
|
172
|
+
"login--checkboxRatio",
|
|
173
|
+
26.39185333251953
|
|
174
|
+
],
|
|
175
|
+
[
|
|
176
|
+
"login--pageLogin",
|
|
177
|
+
13.974407196044922
|
|
178
|
+
],
|
|
179
|
+
[
|
|
180
|
+
"login--formTextLogin",
|
|
181
|
+
8.543004989624023
|
|
182
|
+
],
|
|
183
|
+
[
|
|
184
|
+
"login--formAttrsLogin",
|
|
185
|
+
2.1100170612335205
|
|
186
|
+
],
|
|
187
|
+
[
|
|
188
|
+
"login--headingsLogin",
|
|
189
|
+
13.746389389038086
|
|
190
|
+
],
|
|
191
|
+
[
|
|
192
|
+
"login--layoutLogin",
|
|
193
|
+
0.20221181213855743
|
|
194
|
+
],
|
|
195
|
+
[
|
|
196
|
+
"login--rememberMeCheckbox",
|
|
197
|
+
8.348167419433594
|
|
198
|
+
],
|
|
199
|
+
[
|
|
200
|
+
"login--troubleLink",
|
|
201
|
+
12.179048538208008
|
|
202
|
+
],
|
|
203
|
+
[
|
|
204
|
+
"login--submitLogin",
|
|
205
|
+
13.702370643615723
|
|
206
|
+
],
|
|
207
|
+
[
|
|
208
|
+
"login--pageRegister",
|
|
209
|
+
-13.799778938293457
|
|
210
|
+
],
|
|
211
|
+
[
|
|
212
|
+
"login--formTextRegister",
|
|
213
|
+
-0.044963739812374115
|
|
214
|
+
],
|
|
215
|
+
[
|
|
216
|
+
"login--formAttrsRegister",
|
|
217
|
+
-19.146482467651367
|
|
218
|
+
],
|
|
219
|
+
[
|
|
220
|
+
"login--headingsRegister",
|
|
221
|
+
-10.542322158813477
|
|
222
|
+
],
|
|
223
|
+
[
|
|
224
|
+
"login--layoutRegister",
|
|
225
|
+
-2.3833038806915283
|
|
226
|
+
],
|
|
227
|
+
[
|
|
228
|
+
"login--newPasswordRegister",
|
|
229
|
+
-17.38996696472168
|
|
230
|
+
],
|
|
231
|
+
[
|
|
232
|
+
"login--newPasswordConfirmRegister",
|
|
233
|
+
-11.91733455657959
|
|
234
|
+
],
|
|
235
|
+
[
|
|
236
|
+
"login--submitRegister",
|
|
237
|
+
-12.17735481262207
|
|
238
|
+
],
|
|
239
|
+
[
|
|
240
|
+
"login--TOSRef",
|
|
241
|
+
-5.637410640716553
|
|
242
|
+
],
|
|
243
|
+
[
|
|
244
|
+
"login--pagePasswordReset",
|
|
245
|
+
-10.309855461120605
|
|
246
|
+
],
|
|
247
|
+
[
|
|
248
|
+
"login--formTextPasswordReset",
|
|
249
|
+
-6.101982116699219
|
|
250
|
+
],
|
|
251
|
+
[
|
|
252
|
+
"login--formAttrsPasswordReset",
|
|
253
|
+
-11.729959487915039
|
|
254
|
+
],
|
|
255
|
+
[
|
|
256
|
+
"login--headingsPasswordReset",
|
|
257
|
+
-12.499267578125
|
|
258
|
+
],
|
|
259
|
+
[
|
|
260
|
+
"login--layoutPasswordReset",
|
|
261
|
+
-2.965204954147339
|
|
262
|
+
],
|
|
263
|
+
[
|
|
264
|
+
"login--pageRecovery",
|
|
265
|
+
0.14035266637802124
|
|
266
|
+
],
|
|
267
|
+
[
|
|
268
|
+
"login--formTextRecovery",
|
|
269
|
+
0.03439144045114517
|
|
270
|
+
],
|
|
271
|
+
[
|
|
272
|
+
"login--formAttrsRecovery",
|
|
273
|
+
-22.603046417236328
|
|
274
|
+
],
|
|
275
|
+
[
|
|
276
|
+
"login--headingsRecovery",
|
|
277
|
+
-10.492897033691406
|
|
278
|
+
],
|
|
279
|
+
[
|
|
280
|
+
"login--layoutRecovery",
|
|
281
|
+
5.598866939544678
|
|
282
|
+
],
|
|
283
|
+
[
|
|
284
|
+
"login--identifierRecovery",
|
|
285
|
+
4.300655364990234
|
|
286
|
+
],
|
|
287
|
+
[
|
|
288
|
+
"login--submitRecovery",
|
|
289
|
+
-12.31758975982666
|
|
290
|
+
],
|
|
291
|
+
[
|
|
292
|
+
"login--formTextMFA",
|
|
293
|
+
-14.27755069732666
|
|
294
|
+
],
|
|
295
|
+
[
|
|
296
|
+
"login--formAttrsMFA",
|
|
297
|
+
-19.56307029724121
|
|
298
|
+
],
|
|
299
|
+
[
|
|
300
|
+
"login--inputsMFA",
|
|
301
|
+
-19.59412384033203
|
|
302
|
+
],
|
|
303
|
+
[
|
|
304
|
+
"login--inputsOTP",
|
|
305
|
+
-16.51680564880371
|
|
306
|
+
],
|
|
307
|
+
[
|
|
308
|
+
"login--newsletterForm",
|
|
309
|
+
-9.028794288635254
|
|
310
|
+
],
|
|
311
|
+
[
|
|
312
|
+
"login--searchForm",
|
|
313
|
+
-6.545746803283691
|
|
314
|
+
],
|
|
315
|
+
[
|
|
316
|
+
"login--multistepForm",
|
|
317
|
+
-1.8370318412780762
|
|
318
|
+
],
|
|
319
|
+
[
|
|
320
|
+
"login--multiAuthForm",
|
|
321
|
+
15.096943855285645
|
|
322
|
+
],
|
|
323
|
+
[
|
|
324
|
+
"login--visibleRatio,visibleFieldsCountScaled",
|
|
325
|
+
-6.863025188446045
|
|
326
|
+
],
|
|
327
|
+
[
|
|
328
|
+
"login--visibleRatio,identifiersCountScaled",
|
|
329
|
+
-11.385756492614746
|
|
330
|
+
],
|
|
331
|
+
[
|
|
332
|
+
"login--visibleRatio,passwordsCountScaled",
|
|
333
|
+
13.88270378112793
|
|
334
|
+
],
|
|
335
|
+
[
|
|
336
|
+
"login--visibleRatio,hiddenIdentifiersCountScaled",
|
|
337
|
+
-4.858383655548096
|
|
338
|
+
],
|
|
339
|
+
[
|
|
340
|
+
"login--visibleRatio,hiddenPasswordsCountScaled",
|
|
341
|
+
-12.938082695007324
|
|
342
|
+
],
|
|
343
|
+
[
|
|
344
|
+
"login--visibleRatio,multistepForm",
|
|
345
|
+
5.489163875579834
|
|
346
|
+
],
|
|
347
|
+
[
|
|
348
|
+
"login--identifierRatio,visibleFieldsCountScaled",
|
|
349
|
+
-20.94881820678711
|
|
350
|
+
],
|
|
351
|
+
[
|
|
352
|
+
"login--identifierRatio,identifiersCountScaled",
|
|
353
|
+
9.301095962524414
|
|
354
|
+
],
|
|
355
|
+
[
|
|
356
|
+
"login--identifierRatio,passwordsCountScaled",
|
|
357
|
+
-8.721858978271484
|
|
358
|
+
],
|
|
359
|
+
[
|
|
360
|
+
"login--identifierRatio,hiddenIdentifiersCountScaled",
|
|
361
|
+
-2.131696939468384
|
|
362
|
+
],
|
|
363
|
+
[
|
|
364
|
+
"login--identifierRatio,hiddenPasswordsCountScaled",
|
|
365
|
+
16.711109161376953
|
|
366
|
+
],
|
|
367
|
+
[
|
|
368
|
+
"login--identifierRatio,multistepForm",
|
|
369
|
+
11.259562492370605
|
|
370
|
+
],
|
|
371
|
+
[
|
|
372
|
+
"login--passwordRatio,visibleFieldsCountScaled",
|
|
373
|
+
11.20872974395752
|
|
374
|
+
],
|
|
375
|
+
[
|
|
376
|
+
"login--passwordRatio,identifiersCountScaled",
|
|
377
|
+
-8.333873748779297
|
|
378
|
+
],
|
|
379
|
+
[
|
|
380
|
+
"login--passwordRatio,passwordsCountScaled",
|
|
381
|
+
-3.4213614463806152
|
|
382
|
+
],
|
|
383
|
+
[
|
|
384
|
+
"login--passwordRatio,hiddenIdentifiersCountScaled",
|
|
385
|
+
21.96377182006836
|
|
386
|
+
],
|
|
387
|
+
[
|
|
388
|
+
"login--passwordRatio,hiddenPasswordsCountScaled",
|
|
389
|
+
34.9525146484375
|
|
390
|
+
],
|
|
391
|
+
[
|
|
392
|
+
"login--passwordRatio,multistepForm",
|
|
393
|
+
-12.636921882629395
|
|
394
|
+
],
|
|
395
|
+
[
|
|
396
|
+
"login--requiredRatio,visibleFieldsCountScaled",
|
|
397
|
+
13.960801124572754
|
|
398
|
+
],
|
|
399
|
+
[
|
|
400
|
+
"login--requiredRatio,identifiersCountScaled",
|
|
401
|
+
-5.709250450134277
|
|
402
|
+
],
|
|
403
|
+
[
|
|
404
|
+
"login--requiredRatio,passwordsCountScaled",
|
|
405
|
+
8.685138702392578
|
|
406
|
+
],
|
|
407
|
+
[
|
|
408
|
+
"login--requiredRatio,hiddenIdentifiersCountScaled",
|
|
409
|
+
-20.684762954711914
|
|
410
|
+
],
|
|
411
|
+
[
|
|
412
|
+
"login--requiredRatio,hiddenPasswordsCountScaled",
|
|
413
|
+
17.758085250854492
|
|
414
|
+
],
|
|
415
|
+
[
|
|
416
|
+
"login--requiredRatio,multistepForm",
|
|
417
|
+
14.86757755279541
|
|
418
|
+
]
|
|
419
|
+
],
|
|
420
|
+
"bias": -6.360585689544678
|
|
421
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
{
|
|
2
|
+
"coeffs": [
|
|
3
|
+
[
|
|
4
|
+
"new-password--isFormLogin",
|
|
5
|
+
-10.936930656433105
|
|
6
|
+
],
|
|
7
|
+
[
|
|
8
|
+
"new-password--isFormRegister",
|
|
9
|
+
11.831424713134766
|
|
10
|
+
],
|
|
11
|
+
[
|
|
12
|
+
"new-password--isFormPasswordChange",
|
|
13
|
+
5.067559242248535
|
|
14
|
+
],
|
|
15
|
+
[
|
|
16
|
+
"new-password--isFormNoop",
|
|
17
|
+
11.193541526794434
|
|
18
|
+
],
|
|
19
|
+
[
|
|
20
|
+
"new-password--autocompleteNew",
|
|
21
|
+
2.4367527961730957
|
|
22
|
+
],
|
|
23
|
+
[
|
|
24
|
+
"new-password--autocompleteCurrent",
|
|
25
|
+
-1.0056599378585815
|
|
26
|
+
],
|
|
27
|
+
[
|
|
28
|
+
"new-password--autocompleteOff",
|
|
29
|
+
1.5895371437072754
|
|
30
|
+
],
|
|
31
|
+
[
|
|
32
|
+
"new-password--parentFormOnePassword",
|
|
33
|
+
-1.4990589618682861
|
|
34
|
+
],
|
|
35
|
+
[
|
|
36
|
+
"new-password--prevPasswordFieldExists",
|
|
37
|
+
3.6485674381256104
|
|
38
|
+
],
|
|
39
|
+
[
|
|
40
|
+
"new-password--nextPasswordFieldExists",
|
|
41
|
+
1.4125449657440186
|
|
42
|
+
],
|
|
43
|
+
[
|
|
44
|
+
"new-password--attrCreate",
|
|
45
|
+
2.043544292449951
|
|
46
|
+
],
|
|
47
|
+
[
|
|
48
|
+
"new-password--attrCurrent",
|
|
49
|
+
-1.0884264707565308
|
|
50
|
+
],
|
|
51
|
+
[
|
|
52
|
+
"new-password--attrConfirm",
|
|
53
|
+
6.419448375701904
|
|
54
|
+
],
|
|
55
|
+
[
|
|
56
|
+
"new-password--attrReset",
|
|
57
|
+
0.08130821585655212
|
|
58
|
+
],
|
|
59
|
+
[
|
|
60
|
+
"new-password--textCreate",
|
|
61
|
+
2.1415109634399414
|
|
62
|
+
],
|
|
63
|
+
[
|
|
64
|
+
"new-password--textCurrent",
|
|
65
|
+
-1.3681634664535522
|
|
66
|
+
],
|
|
67
|
+
[
|
|
68
|
+
"new-password--textConfirm",
|
|
69
|
+
6.278629779815674
|
|
70
|
+
],
|
|
71
|
+
[
|
|
72
|
+
"new-password--textReset",
|
|
73
|
+
0.07996046543121338
|
|
74
|
+
],
|
|
75
|
+
[
|
|
76
|
+
"new-password--labelCreate",
|
|
77
|
+
7.23655891418457
|
|
78
|
+
],
|
|
79
|
+
[
|
|
80
|
+
"new-password--labelCurrent",
|
|
81
|
+
-13.138494491577148
|
|
82
|
+
],
|
|
83
|
+
[
|
|
84
|
+
"new-password--labelConfirm",
|
|
85
|
+
6.407430171966553
|
|
86
|
+
],
|
|
87
|
+
[
|
|
88
|
+
"new-password--labelReset",
|
|
89
|
+
-0.02614663541316986
|
|
90
|
+
],
|
|
91
|
+
[
|
|
92
|
+
"new-password--prevPasswordNew",
|
|
93
|
+
6.290370941162109
|
|
94
|
+
],
|
|
95
|
+
[
|
|
96
|
+
"new-password--prevPasswordCurrent",
|
|
97
|
+
6.439488887786865
|
|
98
|
+
],
|
|
99
|
+
[
|
|
100
|
+
"new-password--prevPasswordConfirm",
|
|
101
|
+
0.02449376881122589
|
|
102
|
+
],
|
|
103
|
+
[
|
|
104
|
+
"new-password--nextPasswordNew",
|
|
105
|
+
-10.66829776763916
|
|
106
|
+
],
|
|
107
|
+
[
|
|
108
|
+
"new-password--nextPasswordCurrent",
|
|
109
|
+
7.651172161102295
|
|
110
|
+
],
|
|
111
|
+
[
|
|
112
|
+
"new-password--nextPasswordConfirm",
|
|
113
|
+
7.5237345695495605
|
|
114
|
+
],
|
|
115
|
+
[
|
|
116
|
+
"new-password--passwordOutlier",
|
|
117
|
+
-23.131240844726562
|
|
118
|
+
],
|
|
119
|
+
[
|
|
120
|
+
"new-password--prevPasswordCurrent,nextPasswordNew",
|
|
121
|
+
5.949848651885986
|
|
122
|
+
]
|
|
123
|
+
],
|
|
124
|
+
"bias": -0.42535680532455444
|
|
125
|
+
}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
{
|
|
2
|
+
"coeffs": [
|
|
3
|
+
[
|
|
4
|
+
"otp--parentFormFormMFA",
|
|
5
|
+
7.771900177001953
|
|
6
|
+
],
|
|
7
|
+
[
|
|
8
|
+
"otp--parentFormFormOTPOutlier",
|
|
9
|
+
-0.04360857233405113
|
|
10
|
+
],
|
|
11
|
+
[
|
|
12
|
+
"otp--fieldOutlier",
|
|
13
|
+
-14.93850040435791
|
|
14
|
+
],
|
|
15
|
+
[
|
|
16
|
+
"otp--parentFormLinkOTPOutlier",
|
|
17
|
+
-15.19876766204834
|
|
18
|
+
],
|
|
19
|
+
[
|
|
20
|
+
"otp--emailOutlierCountScaled",
|
|
21
|
+
-20.635622024536133
|
|
22
|
+
],
|
|
23
|
+
[
|
|
24
|
+
"otp--inputCountIsInvalid",
|
|
25
|
+
-4.404586315155029
|
|
26
|
+
],
|
|
27
|
+
[
|
|
28
|
+
"otp--nameMatch",
|
|
29
|
+
11.083649635314941
|
|
30
|
+
],
|
|
31
|
+
[
|
|
32
|
+
"otp--idMatch",
|
|
33
|
+
8.304197311401367
|
|
34
|
+
],
|
|
35
|
+
[
|
|
36
|
+
"otp--numericMode",
|
|
37
|
+
6.63908052444458
|
|
38
|
+
],
|
|
39
|
+
[
|
|
40
|
+
"otp--patternOTP",
|
|
41
|
+
11.01827621459961
|
|
42
|
+
],
|
|
43
|
+
[
|
|
44
|
+
"otp--maxLengthExpected",
|
|
45
|
+
1.5373173952102661
|
|
46
|
+
],
|
|
47
|
+
[
|
|
48
|
+
"otp--maxLengthInvalid",
|
|
49
|
+
-6.062628269195557
|
|
50
|
+
],
|
|
51
|
+
[
|
|
52
|
+
"otp--maxLength1",
|
|
53
|
+
4.458582401275635
|
|
54
|
+
],
|
|
55
|
+
[
|
|
56
|
+
"otp--maxLength5",
|
|
57
|
+
-7.512012481689453
|
|
58
|
+
],
|
|
59
|
+
[
|
|
60
|
+
"otp--minLength6",
|
|
61
|
+
15.0722017288208
|
|
62
|
+
],
|
|
63
|
+
[
|
|
64
|
+
"otp--maxLength6",
|
|
65
|
+
-7.584023952484131
|
|
66
|
+
],
|
|
67
|
+
[
|
|
68
|
+
"otp--autocompleteOTC",
|
|
69
|
+
5.740074634552002
|
|
70
|
+
],
|
|
71
|
+
[
|
|
72
|
+
"otp--prevAligned",
|
|
73
|
+
4.224268913269043
|
|
74
|
+
],
|
|
75
|
+
[
|
|
76
|
+
"otp--prevArea",
|
|
77
|
+
2.773845672607422
|
|
78
|
+
],
|
|
79
|
+
[
|
|
80
|
+
"otp--nextAligned",
|
|
81
|
+
3.857393741607666
|
|
82
|
+
],
|
|
83
|
+
[
|
|
84
|
+
"otp--nextArea",
|
|
85
|
+
2.5566060543060303
|
|
86
|
+
],
|
|
87
|
+
[
|
|
88
|
+
"otp--attrMFA",
|
|
89
|
+
32.71980285644531
|
|
90
|
+
],
|
|
91
|
+
[
|
|
92
|
+
"otp--attrOTP",
|
|
93
|
+
20.423227310180664
|
|
94
|
+
],
|
|
95
|
+
[
|
|
96
|
+
"otp--textMFA",
|
|
97
|
+
6.684645652770996
|
|
98
|
+
],
|
|
99
|
+
[
|
|
100
|
+
"otp--textOTP",
|
|
101
|
+
1.1047155857086182
|
|
102
|
+
],
|
|
103
|
+
[
|
|
104
|
+
"otp--labelMFA",
|
|
105
|
+
18.526269912719727
|
|
106
|
+
],
|
|
107
|
+
[
|
|
108
|
+
"otp--labelOTP",
|
|
109
|
+
8.603682518005371
|
|
110
|
+
],
|
|
111
|
+
[
|
|
112
|
+
"otp--fieldParentsOTP",
|
|
113
|
+
-10.004483222961426
|
|
114
|
+
],
|
|
115
|
+
[
|
|
116
|
+
"otp--autocompleteOTC,inputCountIsInvalid",
|
|
117
|
+
-4.689912796020508
|
|
118
|
+
],
|
|
119
|
+
[
|
|
120
|
+
"otp--autocompleteOTC,maxLengthInvalid",
|
|
121
|
+
-18.661497116088867
|
|
122
|
+
],
|
|
123
|
+
[
|
|
124
|
+
"otp--autocompleteOTC,attrOTP",
|
|
125
|
+
5.988102436065674
|
|
126
|
+
],
|
|
127
|
+
[
|
|
128
|
+
"otp--siblingOfInterest,inputCountIsInvalid",
|
|
129
|
+
-7.615082263946533
|
|
130
|
+
],
|
|
131
|
+
[
|
|
132
|
+
"otp--siblingOfInterest,maxLengthInvalid",
|
|
133
|
+
-6.08467435836792
|
|
134
|
+
],
|
|
135
|
+
[
|
|
136
|
+
"otp--siblingOfInterest,attrOTP",
|
|
137
|
+
5.977667331695557
|
|
138
|
+
],
|
|
139
|
+
[
|
|
140
|
+
"otp--parentFormFormMFA,inputCountIsInvalid",
|
|
141
|
+
9.612953186035156
|
|
142
|
+
],
|
|
143
|
+
[
|
|
144
|
+
"otp--parentFormFormMFA,maxLengthInvalid",
|
|
145
|
+
-12.804899215698242
|
|
146
|
+
],
|
|
147
|
+
[
|
|
148
|
+
"otp--parentFormFormMFA,attrOTP",
|
|
149
|
+
6.108048439025879
|
|
150
|
+
]
|
|
151
|
+
],
|
|
152
|
+
"bias": -11.110547065734863
|
|
153
|
+
}
|