-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbw-at.ini
231 lines (172 loc) · 4.77 KB
/
bw-at.ini
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#
# Reload the app after updating this file.
#
[CREDENTIALS]
user =
; Bitwarden Username
tsl = 0
; 0 = None
; 1 = Email Verification Codes
; 2 = Authenticator Application
; 3 = YubiKey OTP Security Key
; Two-step Login for Bitwarden
api-key = 0
; 0 = Disabled
; 1 = Login via API key
client-id =
client-secret =
; API Login information
[GENERAL]
pin = 0
; 0 = Disabled
; 1 = Custom PIN number
; 2 = Authenticator Application
; Unlock via PIN or Authenticator
totp = 1
; 0 = Disabled
; 1 = Add TOTP to Clipboard
; 2 = Suppress notifications
; Generate Authenticator codes
; https://en.wikipedia.org/wiki/Time-based_One-Time_Password
tcato = 0
; 0 = Disabled
; 1 = Enabled
; Two-Channel Auto-Type Obfuscation
; https://keepass.info/help/v2/autotype_obfuscation.html
updates = 1
; 0 = Disabled (INSECURE)
; 1 = Enabled (Safe default)
; Check for new app versions
favicons = 0
; 0 = Disabled
; 1 = Enabled
; Favicons download
timeout = 0
; 0 = Disabled
; # = Minutes
; After inactivity...
action = 0
; 0 = None
; 1 = Lock app
; 2 = Lock Windows
; 3 = Logout app
sync = 0
; 0 = Disabled
; # = Interval
; Synchronization
[HOTKEYS]
; Modifiers:
; ! = Alt
; + = Shift
; ^ = Control
; # = Windows
; https://www.autohotkey.com/docs/Hotkeys.htm#Symbols
; List of keys:
; https://www.autohotkey.com/docs/KeyList.htm#keyboard
; Rules:
; One of the following options must be active (not blank).
; The entry with the same name must be active in SEQUENCES.
default = ^!a
; Blank to disable
username = ^!u
; Blank to disable
password = ^!p
; Blank to disable
totp = ^!o
; Blank to disable
[SEQUENCES]
; Text inside braces is called `Placeholder`
default = {ClearField}{Username}{SmartTab}{Password}{Enter}
; Default sequence
username = {ClearField}{Username}
; Username-only sequence
password = {ClearField}{Password}{Enter}
; Password-only sequence
totp = {TOTP}
; TOTP-only sequence
;
; Placeholders (all are case insensitive):
;
; {Username} = Username.
; {Password} = Password.
; {TOTP} = Time-based One-Time Password from "Authenticator Key".
;
; {Beep f m} = Beeps with a frequency of `f` hertz for `m` milliseconds.
; {Beep 750 500} - High pitch, half a second.
; {ClearField} = Remove contents of a text field prior typing.
; {Clipboard} = Pastes Clipboard contents.
; {Clipboard *} = Sets Clipboard contents.
; {Clipboard Lorem ipsum} - Puts `Lorem ipsum`
; {Delay m} = Waits `m` number of milliseconds before continue typing.
; {Delay 500} - Waits half a second before continuing.
; {SmartTab} = Sends Tabs until a text field is found.
; {Space} = Regular space, useful to toggle the value of checkboxes.
; {TCATO *} = Inline changing the TCATO operation.
; {TCATO} - Toggle
; {TCATO on} - Turn on
; {TCATO off} - Turn off
; {AppActivate *} = Activates the window denoted by the asterisk:
; {AppActivate firefox.exe} - By exe name.
; {AppActivate - Mozilla Firefox} - By window title.
; {XXX n} = `n` key presses of XXX.
; {Tab 2} - Presses `Tab` 2 times.
; The full list of supported keys can be found in:
; https://www.autohotkey.com/docs/KeyList.htm#keyboard
[ADVANCED]
## Reprompt
reprompt-with-pin = 1
; Default: 1
; 0 = Use master password
; 1 = Use PIN/Authenticator
## Updates
update-frequency = 1
; Default: 1
; Minimum: 1
; Period in days, the lower the safer.
## PIN number
pin-length = 6
; Default: 6
; Minimum: 4
; Maximum: 24
; Custom PIN length
## Auto-type
field = auto-type
; Name of the field for a custom sequence
; Example: https://i.imgur.com/tCflK9o.png
## TCATO
tcato-ksps = 10
; Default: 10
; Minimum: 10
; Keystrokes per second
; Typing speed after the Clipboard operation
tcato-wait = 250
; Default: 250
; Minimum: 250
; In milliseconds
; Time to wait for Clipboard operation to finish
; Entry-specific overrides:
; To force its usage even when turned off add a "tcato" field with value `on`.
; To disable its usage even when turned on add a "tcato" field with value `off`.
; Example: https://i.imgur.com/dHG269o.png
## On-premises Hosting
server =
; https://bitwarden.com/help/article/change-client-environment/#cli
NODE_EXTRA_CA_CERTS =
; https://bitwarden.com/help/article/cli/#using-self-signed-certificates
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; SELF MANAGED AREA ;;
;; DO NOT EDIT BEYOND THIS POINT ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[DATA]
pin =
update =
version = 1.1
[GENERATOR]
lower = 1
upper = 1
digits = 1
symbols = 1
length = 39
exclude =