-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema.json
More file actions
476 lines (476 loc) · 17.7 KB
/
schema.json
File metadata and controls
476 lines (476 loc) · 17.7 KB
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
{
"schema": {
"name": "1Password for Business (1PassHound)",
"version": "1.0.0",
"namespace": "OP"
},
"node_kinds": [
{
"name": "OP_Account",
"display_name": "Account",
"description": "A 1Password Business account, the top-level organizational resource",
"is_display_kind": "true",
"icon": "building",
"color": "#5A8FDC"
},
{
"name": "OP_User",
"display_name": "User",
"description": "A user belonging to a 1Password Business account",
"is_display_kind": "true",
"icon": "user",
"color": "#F4CA70"
},
{
"name": "OP_Group",
"display_name": "Group",
"description": "A group of users within a 1Password Business account, used for permission assignment",
"is_display_kind": "true",
"icon": "user-group",
"color": "#F09078"
},
{
"name": "OP_Vault",
"display_name": "Vault",
"description": "A vault that holds items such as logins, credentials, and documents",
"is_display_kind": "true",
"icon": "vault",
"color": "#6AE4A9"
},
{
"name": "OP_Item",
"display_name": "Item",
"description": "A generic vault item (fallback for unrecognized item categories)",
"is_display_kind": "true",
"icon": "box",
"color": "#AB6ECF"
},
{
"name": "OP_ApiCredential",
"display_name": "API Credential",
"description": "An API key, token, or secret used by applications or services to authenticate against an API",
"is_display_kind": "true",
"icon": "code",
"color": "#C89FE0"
},
{
"name": "OP_CreditCard",
"display_name": "Credit Card",
"description": "A stored payment card record, including card number, expiration date, and billing details",
"is_display_kind": "true",
"icon": "credit-card",
"color": "#E8A0C8"
},
{
"name": "OP_Document",
"display_name": "Document",
"description": "An arbitrary file or document (PDF, Word, spreadsheet, etc.) attached to a vault",
"is_display_kind": "true",
"icon": "file",
"color": "#C694D8"
},
{
"name": "OP_Login",
"display_name": "Login",
"description": "A website or service login record containing a username and password pair",
"is_display_kind": "true",
"icon": "user-lock",
"color": "#D4ADE8"
},
{
"name": "OP_Passport",
"display_name": "Passport",
"description": "A secure record formatted for passport information (number, issue/expiry dates, etc.)",
"is_display_kind": "true",
"icon": "passport",
"color": "#F0B0D0"
},
{
"name": "OP_Password",
"display_name": "Password",
"description": "A standalone password entry, not tied to a specific login record",
"is_display_kind": "true",
"icon": "key",
"color": "#B990D4"
},
{
"name": "OP_SecureNote",
"display_name": "Secure Note",
"description": "A free-form secure note for storing text, URLs, or other sensitive free-form data",
"is_display_kind": "true",
"icon": "note-sticky",
"color": "#DEB8F0"
},
{
"name": "OP_Server",
"display_name": "Server",
"description": "Credentials for server access (SSH password, IP address, admin URL, etc.)",
"is_display_kind": "true",
"icon": "server",
"color": "#D088AC"
},
{
"name": "OP_SoftwareLicense",
"display_name": "Software License",
"description": "A software license key or file, optionally with purchase/expiry metadata",
"is_display_kind": "true",
"icon": "certificate",
"color": "#D990B8"
},
{
"name": "OP_SshKey",
"display_name": "SSH Key",
"description": "An SSH key pair (public + private) for authenticating to servers",
"is_display_kind": "true",
"icon": "terminal",
"color": "#E49CC0"
},
{
"name": "OP_WirelessRouter",
"display_name": "Wireless Router",
"description": "Wi-Fi network credentials (SSID, passphrase, encryption type)",
"is_display_kind": "true",
"icon": "wifi",
"color": "#F0B8D4"
}
],
"relationship_kinds": [
{
"name": "OP_Contains",
"description": "Account contains a child resource (user, group, vault, or item)",
"is_traversable": false
},
{
"name": "OP_HasItem",
"description": "Vault holds an item",
"is_traversable": true
},
{
"name": "OP_MemberOf",
"description": "User is a member of a group, inheriting the group's vault permissions",
"is_traversable": true
},
{
"name": "OP_ManagerOf",
"description": "User is a manager of a group and can add/remove members and change vault assignments",
"is_traversable": false
},
{
"name": "OP_AddMember",
"description": "Group can add members to another group (post-processed from OP_ManageGroups permission on USER_DEFINED groups)",
"is_traversable": true
},
{
"name": "OP_CanAddMember",
"description": "User (as group manager) can add members to a group",
"is_traversable": true
},
{
"name": "OP_ViewItems",
"description": "Principal can view items in the vault (cryptographically enforced — grants the vault encryption key)",
"is_traversable": true
},
{
"name": "OP_CreateItems",
"description": "Principal can create new items in the vault (server-enforced)",
"is_traversable": false
},
{
"name": "OP_EditItems",
"description": "Principal can edit existing items in the vault (server-enforced)",
"is_traversable": true
},
{
"name": "OP_ArchiveItems",
"description": "Principal can archive items in the vault (server-enforced)",
"is_traversable": false
},
{
"name": "OP_DeleteItems",
"description": "Principal can delete items from the vault (server-enforced)",
"is_traversable": false
},
{
"name": "OP_ManageVault",
"description": "Principal can manage vault settings, grant/revoke access for others, and delete the vault (server-enforced). Can self-grant view_items to escalate to full vault access.",
"is_traversable": true
},
{
"name": "OP_ViewAndCopyPasswords",
"description": "Principal can view and copy passwords from vault items (client-enforced only — unenforceable if principal has view_items)",
"is_traversable": true
},
{
"name": "OP_ViewItemHistory",
"description": "Principal can view the history of items in the vault (client-enforced)",
"is_traversable": false
},
{
"name": "OP_ImportItems",
"description": "Principal can import items into the vault (server-enforced)",
"is_traversable": false
},
{
"name": "OP_ExportItems",
"description": "Principal can export vault data to unencrypted files (client-enforced only — exfiltration vector)",
"is_traversable": true
},
{
"name": "OP_CopyAndShareItems",
"description": "Principal can copy items to other vaults and share items via links (client-enforced only)",
"is_traversable": true
},
{
"name": "OP_PrintItems",
"description": "Principal can print items from the vault (client-enforced)",
"is_traversable": false
},
{
"name": "OP_AddPerson",
"description": "Group can invite new members to the 1Password account",
"is_traversable": false
},
{
"name": "OP_ChangePersonName",
"description": "Group can change a team member's name",
"is_traversable": false
},
{
"name": "OP_ChangeTeamAttributes",
"description": "Group can change team attributes",
"is_traversable": false
},
{
"name": "OP_ChangeTeamDomain",
"description": "Group can change the team's sign-in domain",
"is_traversable": false
},
{
"name": "OP_ChangeTeamSettings",
"description": "Group can change team settings including authentication policies, SSO configuration, and firewall rules",
"is_traversable": false
},
{
"name": "OP_CreateVaults",
"description": "Group can create new vaults in the account",
"is_traversable": false
},
{
"name": "OP_DeletePerson",
"description": "Group can permanently delete team members from the account",
"is_traversable": false
},
{
"name": "OP_DeleteTeam",
"description": "Group can delete the entire 1Password team/account",
"is_traversable": false
},
{
"name": "OP_ManageBilling",
"description": "Group can manage billing settings for the account",
"is_traversable": false
},
{
"name": "OP_ManageGroups",
"description": "Group can manage all custom (USER_DEFINED) groups in the account — add/remove members, change vault assignments",
"is_traversable": false
},
{
"name": "OP_ManageTemplates",
"description": "Group can manage item templates for the account",
"is_traversable": false
},
{
"name": "OP_ManageVaults",
"description": "Group has account-level vault management — equivalent to manage_vault on every vault in the account",
"is_traversable": false
},
{
"name": "OP_ProvisionPeople",
"description": "Group can provision team members via SCIM or CLI",
"is_traversable": false
},
{
"name": "OP_RecoverAccounts",
"description": "Group can initiate account recovery for any user — an account takeover primitive when combined with email access",
"is_traversable": false
},
{
"name": "OP_SuspendPerson",
"description": "Group can temporarily suspend a team member's account",
"is_traversable": false
},
{
"name": "OP_SuspendTeam",
"description": "Group can suspend the entire team/account",
"is_traversable": false
},
{
"name": "OP_ViewActivitiesLog",
"description": "Group can view the account's activity log",
"is_traversable": false
},
{
"name": "OP_ViewAdministrativeSidebar",
"description": "Group can view the administrative sidebar in the 1Password web interface",
"is_traversable": false
},
{
"name": "OP_ViewBilling",
"description": "Group can view billing information for the account",
"is_traversable": false
},
{
"name": "OP_ViewPeople",
"description": "Group can view the list of team members",
"is_traversable": false
},
{
"name": "OP_ViewTeamSettings",
"description": "Group can view team settings",
"is_traversable": false
},
{
"name": "OP_ViewTemplates",
"description": "Group can view item templates",
"is_traversable": false
},
{
"name": "OP_ViewVaults",
"description": "Group can view the list of vaults in the account",
"is_traversable": false
}
],
"environments": [
{
"environment_kind": "OP_Account",
"source_kind": "OP_Base",
"principal_kinds": [
"OP_User",
"OP_Group"
]
}
],
"relationship_findings": [
{
"name": "OP_HasItem_Finding",
"display_name": "Vault Contains Item (OP)",
"environment_kind": "OP_Account",
"relationship_kind": "OP_HasItem",
"remediation": {
"short_description": "TODO: Describe the security issue",
"long_description": "TODO: Provide a detailed explanation of why this relationship represents a security concern",
"short_remediation": "TODO: Brief remediation guidance",
"long_remediation": "# TODO: Detailed Remediation\n\n## Steps to Remediate:\n\n1. **Identify the affected resources**\n2. **Remove or reduce excessive permissions**\n3. **Verify the change**"
}
},
{
"name": "OP_MemberOf_Finding",
"display_name": "Group Membership (OP)",
"environment_kind": "OP_Account",
"relationship_kind": "OP_MemberOf",
"remediation": {
"short_description": "TODO: Describe the security issue",
"long_description": "TODO: Provide a detailed explanation of why this relationship represents a security concern",
"short_remediation": "TODO: Brief remediation guidance",
"long_remediation": "# TODO: Detailed Remediation\n\n## Steps to Remediate:\n\n1. **Identify the affected resources**\n2. **Remove or reduce excessive permissions**\n3. **Verify the change**"
}
},
{
"name": "OP_AddMember_Finding",
"display_name": "Add Member to Group (OP)",
"environment_kind": "OP_Account",
"relationship_kind": "OP_AddMember",
"remediation": {
"short_description": "TODO: Describe the security issue",
"long_description": "TODO: Provide a detailed explanation of why this relationship represents a security concern",
"short_remediation": "TODO: Brief remediation guidance",
"long_remediation": "# TODO: Detailed Remediation\n\n## Steps to Remediate:\n\n1. **Identify the affected resources**\n2. **Remove or reduce excessive permissions**\n3. **Verify the change**"
}
},
{
"name": "OP_CanAddMember_Finding",
"display_name": "Can Add Member to Group (OP)",
"environment_kind": "OP_Account",
"relationship_kind": "OP_CanAddMember",
"remediation": {
"short_description": "TODO: Describe the security issue",
"long_description": "TODO: Provide a detailed explanation of why this relationship represents a security concern",
"short_remediation": "TODO: Brief remediation guidance",
"long_remediation": "# TODO: Detailed Remediation\n\n## Steps to Remediate:\n\n1. **Identify the affected resources**\n2. **Remove or reduce excessive permissions**\n3. **Verify the change**"
}
},
{
"name": "OP_ViewItems_Finding",
"display_name": "View Vault Items (OP)",
"environment_kind": "OP_Account",
"relationship_kind": "OP_ViewItems",
"remediation": {
"short_description": "TODO: Describe the security issue",
"long_description": "TODO: Provide a detailed explanation of why this relationship represents a security concern",
"short_remediation": "TODO: Brief remediation guidance",
"long_remediation": "# TODO: Detailed Remediation\n\n## Steps to Remediate:\n\n1. **Identify the affected resources**\n2. **Remove or reduce excessive permissions**\n3. **Verify the change**"
}
},
{
"name": "OP_EditItems_Finding",
"display_name": "Edit Vault Items (OP)",
"environment_kind": "OP_Account",
"relationship_kind": "OP_EditItems",
"remediation": {
"short_description": "TODO: Describe the security issue",
"long_description": "TODO: Provide a detailed explanation of why this relationship represents a security concern",
"short_remediation": "TODO: Brief remediation guidance",
"long_remediation": "# TODO: Detailed Remediation\n\n## Steps to Remediate:\n\n1. **Identify the affected resources**\n2. **Remove or reduce excessive permissions**\n3. **Verify the change**"
}
},
{
"name": "OP_ManageVault_Finding",
"display_name": "Manage Vault (OP)",
"environment_kind": "OP_Account",
"relationship_kind": "OP_ManageVault",
"remediation": {
"short_description": "TODO: Describe the security issue",
"long_description": "TODO: Provide a detailed explanation of why this relationship represents a security concern",
"short_remediation": "TODO: Brief remediation guidance",
"long_remediation": "# TODO: Detailed Remediation\n\n## Steps to Remediate:\n\n1. **Identify the affected resources**\n2. **Remove or reduce excessive permissions**\n3. **Verify the change**"
}
},
{
"name": "OP_ViewAndCopyPasswords_Finding",
"display_name": "View and Copy Passwords (OP)",
"environment_kind": "OP_Account",
"relationship_kind": "OP_ViewAndCopyPasswords",
"remediation": {
"short_description": "TODO: Describe the security issue",
"long_description": "TODO: Provide a detailed explanation of why this relationship represents a security concern",
"short_remediation": "TODO: Brief remediation guidance",
"long_remediation": "# TODO: Detailed Remediation\n\n## Steps to Remediate:\n\n1. **Identify the affected resources**\n2. **Remove or reduce excessive permissions**\n3. **Verify the change**"
}
},
{
"name": "OP_ExportItems_Finding",
"display_name": "Export Vault Items (OP)",
"environment_kind": "OP_Account",
"relationship_kind": "OP_ExportItems",
"remediation": {
"short_description": "TODO: Describe the security issue",
"long_description": "TODO: Provide a detailed explanation of why this relationship represents a security concern",
"short_remediation": "TODO: Brief remediation guidance",
"long_remediation": "# TODO: Detailed Remediation\n\n## Steps to Remediate:\n\n1. **Identify the affected resources**\n2. **Remove or reduce excessive permissions**\n3. **Verify the change**"
}
},
{
"name": "OP_CopyAndShareItems_Finding",
"display_name": "Copy and Share Items (OP)",
"environment_kind": "OP_Account",
"relationship_kind": "OP_CopyAndShareItems",
"remediation": {
"short_description": "TODO: Describe the security issue",
"long_description": "TODO: Provide a detailed explanation of why this relationship represents a security concern",
"short_remediation": "TODO: Brief remediation guidance",
"long_remediation": "# TODO: Detailed Remediation\n\n## Steps to Remediate:\n\n1. **Identify the affected resources**\n2. **Remove or reduce excessive permissions**\n3. **Verify the change**"
}
}
]
}