-
-
Notifications
You must be signed in to change notification settings - Fork 196
/
Copy pathtotp-field.js
171 lines (139 loc) · 5.12 KB
/
totp-field.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
'use strict';
const ignoreRegex = /(bank|coupon|postal|user|zip)((?!(\b|_)totp(\b|_)).)*code|comment|author|error/i;
const ignoredTypes = [ 'email', 'username'];
const acceptedOTPFields = [
'2fa',
'2fpin',
'auth',
'challenge',
'code',
'idvpin',
'mfa',
'one_time_password',
'otp',
'token',
'twofa',
'two-factor',
'twofactor',
'verification_pin'
];
const acceptedParents = [
'.mfa-verify',
];
const kpxcTOTPIcons = {};
kpxcTOTPIcons.icons = [];
kpxcTOTPIcons.newIcon = function(field, databaseState = DatabaseState.DISCONNECTED, segmented = false) {
kpxcTOTPIcons.icons.push(new TOTPFieldIcon(field, databaseState, segmented));
};
kpxcTOTPIcons.switchIcon = function(state, uuid) {
kpxcTOTPIcons.icons.forEach(u => u.switchIcon(state, uuid));
};
kpxcTOTPIcons.deleteHiddenIcons = function() {
kpxcUI.deleteHiddenIcons(kpxcTOTPIcons.icons);
};
kpxcTOTPIcons.autoCompleteIsOneTimeCode = function(field) {
if (!field) {
return false;
}
return field.getLowerCaseAttribute('autocomplete') === 'one-time-code';
};
// Quick check for a valid TOTP field
kpxcTOTPIcons.isAcceptedTOTPField = function(field) {
const id = field.getLowerCaseAttribute('id');
const name = field.getLowerCaseAttribute('name');
const placeholder = field.getLowerCaseAttribute('placeholder');
// Checks if the field id, name or placeholder includes some of the acceptedOTPFields but not any from ignoredTypes
if ((acceptedOTPFields.some(f => id?.includes(f) || (name?.includes(f) || placeholder?.includes(f))) || acceptedParents.some(s => field.closest(s)))
&& !ignoredTypes.some(f => id?.includes(f) || (name?.includes(f) || placeholder?.includes(f)))) {
return true;
}
if (kpxcSites.totpExceptionFound(field)) {
return true;
}
return false;
};
kpxcTOTPIcons.isValid = function(field, forced) {
// Always accept 'one-time-code'
if (kpxcTOTPIcons.autoCompleteIsOneTimeCode(field)) {
return true;
}
if (!field || !kpxcTOTPIcons.isAcceptedTOTPField(field)) {
return false;
}
if (!forced) {
if (ignoredTypes.some(t => t === field.type)
|| field.offsetWidth < MIN_INPUT_FIELD_OFFSET_WIDTH
|| field.size < 2
|| (field.maxLength > 0 && (field.maxLength < MIN_TOTP_INPUT_LENGTH || field.maxLength > kpxcSites.expectedTOTPMaxLength()))
|| ignoredTypes.some(t => t === field.autocomplete)
|| field.id.match(ignoreRegex)
|| field.name.match(ignoreRegex)
|| field.placeholder.match(ignoreRegex)
|| field.readOnly
|| field.inputMode === 'email') {
logDebug('Error: TOTP field found but it is not valid:', field);
return false;
}
}
return true;
};
class TOTPFieldIcon extends Icon {
constructor(field, databaseState = DatabaseState.DISCONNECTED, segmented = false) {
super(field, databaseState, segmented);
this.initField(field, segmented);
kpxcUI.monitorIconPosition(this);
}
}
// Fill TOTP automatically if option is enabled
TOTPFieldIcon.prototype.autoFillSingleTotp = async function(field) {
if (kpxc.settings.autoFillSingleTotp) {
if (kpxc.credentials.length === 0) {
await kpxc.receiveCredentialsIfNecessary();
}
if (kpxc.credentials?.length === 1 && kpxc.entryHasTotp(kpxc.credentials[0])) {
kpxcFill.fillTOTPFromUuid(field, kpxc.credentials[0].uuid);
}
}
};
TOTPFieldIcon.prototype.initField = async function(field, segmented) {
// Observer the visibility
if (this.observer) {
this.observer.observe(field);
}
this.createIcon(field, segmented);
this.inputField = field;
await this.autoFillSingleTotp(field);
};
TOTPFieldIcon.prototype.createIcon = function(field, segmented = false) {
const className = (isFirefox() ? 'moz' : 'default');
// Size the icon dynamically, but not greater than 24 or smaller than 14
const size = Math.max(Math.min(24, field.offsetHeight - 4), 14);
const offset = kpxcUI.calculateIconOffset(field, size);
const icon = kpxcUI.createElement('div', 'kpxc kpxc-totp-icon ' + className,
{
'title': tr('totpFieldText'),
'size': size,
'offset': offset
});
icon.style.zIndex = '10000000';
icon.style.width = Pixels(size);
icon.style.height = Pixels(size);
if (this.databaseState === DatabaseState.DISCONNECTED || this.databaseState === DatabaseState.LOCKED) {
icon.style.filter = 'saturate(0%)';
} else {
icon.style.filter = 'saturate(100%)';
}
icon.addEventListener('click', async function(e) {
if (!e.isTrusted) {
return;
}
e.stopPropagation();
await kpxc.receiveCredentialsIfNecessary();
kpxcFill.fillFromTOTP(field);
});
icon.addEventListener('mousedown', ev => ev.stopPropagation());
icon.addEventListener('mouseup', ev => ev.stopPropagation());
kpxcUI.setIconPosition(icon, field, this.rtl, segmented);
this.icon = icon;
this.createWrapper('css/totp.css');
};