-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathsecurityMap.generated.ts
More file actions
9041 lines (9040 loc) · 273 KB
/
Copy pathsecurityMap.generated.ts
File metadata and controls
9041 lines (9040 loc) · 273 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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* AUTO-GENERATED by utils/generate-security-map.cjs. Do not edit. */
import type { SecurityMapGraph } from './types'
export const securityMapGraph = {
"schemaVersion": "1.0.0",
"title": "SEAL Security Map",
"license": "CC-BY-SA-4.0",
"sourceRepository": "https://github.com/security-alliance/frameworks",
"nodes": [
{
"id": "asset-community-trust",
"type": "asset",
"title": "Community trust",
"summary": "Willingness of users and partners to believe official announcements and click official links. Social engineering spends this asset first.",
"domains": [
"community-communications",
"people"
],
"status": "proposed",
"tags": [
"community",
"trust"
],
"roles": [
"community-manager",
"founder-executive"
],
"lifecycle": [
"normal-operations"
]
},
{
"id": "asset-deployment-authority",
"type": "asset",
"title": "Deployment authority",
"summary": "Permission to publish frontend builds, ship packages, or upgrade on-chain code. Whoever holds it can change what users run.",
"domains": [
"development-supply-chain",
"onchain-systems"
],
"status": "proposed",
"tags": [
"deploy",
"release"
],
"roles": [
"engineer-developer",
"infrastructure-operator"
],
"lifecycle": [
"development",
"pre-launch",
"upgrade"
]
},
{
"id": "asset-domain-control",
"type": "asset",
"title": "Domain control",
"summary": "Registrar, DNS, and names that users type. Losing it lets an attacker present a convincing drain site as the real product.",
"domains": [
"infrastructure"
],
"status": "proposed",
"tags": [
"dns",
"domain",
"registrar"
],
"roles": [
"infrastructure-operator"
],
"lifecycle": [
"normal-operations"
]
},
{
"id": "asset-governance-authority",
"type": "asset",
"title": "Governance authority",
"summary": "Power to pass proposals, change parameters, or upgrade contracts. Capture here rewrites the rest of the system.",
"domains": [
"governance-treasury"
],
"status": "proposed",
"tags": [
"governance",
"upgrades"
],
"roles": [
"governance-participant"
],
"lifecycle": [
"normal-operations",
"upgrade"
]
},
{
"id": "asset-key-holder-safety",
"type": "asset",
"title": "Key-holder safety",
"summary": "The bodily safety of people who can move funds, and of their families. Coercion spends this asset to bypass cryptography.",
"domains": [
"people"
],
"status": "proposed",
"tags": [
"safety",
"duress",
"people"
],
"roles": [
"multisig-signer",
"founder-executive"
],
"lifecycle": [
"normal-operations",
"incident-response"
],
"framework": "physical-security"
},
{
"id": "asset-personal-identifying-data",
"type": "asset",
"title": "Personal identifying data",
"summary": "Home, travel, family, and holdings traces that attackers use to phish, coerce, or show up in person. Distinct from account passwords and signing keys.",
"domains": [
"people",
"community-communications"
],
"status": "proposed",
"tags": [
"osint",
"footprint",
"pii"
],
"roles": [
"founder-executive",
"multisig-signer"
],
"lifecycle": [
"normal-operations"
],
"framework": "privacy"
},
{
"id": "asset-secrets-credentials",
"type": "asset",
"title": "Secrets and credentials",
"summary": "API keys, cloud roles, CI secrets, and account passwords. One leak often becomes infrastructure takeover.",
"domains": [
"devices-identity",
"infrastructure"
],
"status": "proposed",
"tags": [
"secrets",
"credentials"
],
"roles": [
"engineer-developer",
"infrastructure-operator"
],
"lifecycle": [
"normal-operations"
]
},
{
"id": "asset-seed-secrets",
"type": "asset",
"title": "Seed phrase and recovery secrets",
"summary": "The mnemonic or recovery material that reconstructs signing keys. Anyone who sees it can take the wallet.",
"domains": [
"devices-identity",
"people"
],
"status": "proposed",
"tags": [
"seed-phrase",
"recovery",
"keys"
],
"roles": [
"multisig-signer"
],
"lifecycle": [
"normal-operations",
"incident-response"
],
"framework": "wallet-security"
},
{
"id": "asset-signer-keys",
"type": "asset",
"title": "Signer keys",
"summary": "Private keys and devices that approve multisig or privileged transactions. Compromise is equivalent to authorized theft.",
"domains": [
"governance-treasury",
"devices-identity"
],
"status": "proposed",
"tags": [
"keys",
"signers",
"hardware-wallet"
],
"roles": [
"multisig-signer"
],
"lifecycle": [
"normal-operations",
"incident-response"
]
},
{
"id": "asset-source-code",
"type": "asset",
"title": "Source code",
"summary": "Repositories that define contracts, off-chain services, and the frontend. Integrity failures become production failures.",
"domains": [
"development-supply-chain"
],
"status": "proposed",
"tags": [
"source",
"repository"
],
"roles": [
"engineer-developer"
],
"lifecycle": [
"development",
"upgrade"
]
},
{
"id": "asset-treasury-funds",
"type": "asset",
"title": "Treasury funds",
"summary": "Protocol or organization funds held under privileged control. Confidentiality of keys and integrity of spend authority both matter.",
"domains": [
"governance-treasury"
],
"status": "proposed",
"tags": [
"treasury",
"funds"
],
"roles": [
"multisig-signer",
"governance-participant"
],
"lifecycle": [
"normal-operations",
"incident-response"
]
},
{
"id": "asset-user-funds",
"type": "asset",
"title": "User funds",
"summary": "Value users hold in the protocol or send through its interface. A compromised frontend or contract can drain it without touching the treasury.",
"domains": [
"onchain-systems",
"infrastructure"
],
"status": "proposed",
"tags": [
"users",
"funds"
],
"lifecycle": [
"normal-operations"
]
},
{
"id": "component-ai-agent",
"type": "component",
"title": "AI agent",
"summary": "A model that reads untrusted text and can call tools, write files, or construct transactions. Prompt templates do not bound what it does next.",
"domains": [
"development-supply-chain",
"onchain-systems"
],
"status": "proposed",
"tags": [
"ai",
"agent",
"llm"
],
"roles": [
"engineer-developer"
],
"lifecycle": [
"development",
"normal-operations"
],
"framework": "ai-security"
},
{
"id": "component-ci-cd",
"type": "component",
"title": "CI/CD pipeline",
"summary": "Build and release automation that can inject code, leak secrets, or publish a malicious artifact as a trusted release.",
"domains": [
"development-supply-chain"
],
"status": "proposed",
"tags": [
"ci",
"cd",
"build"
],
"roles": [
"engineer-developer"
],
"lifecycle": [
"development",
"upgrade"
],
"framework": "devsecops"
},
{
"id": "component-cloud-infrastructure",
"type": "component",
"title": "Cloud infrastructure",
"summary": "Accounts, servers, and admin consoles that host backends, build agents, and operational tooling.",
"domains": [
"infrastructure"
],
"status": "proposed",
"tags": [
"cloud",
"aws"
],
"roles": [
"infrastructure-operator"
],
"lifecycle": [
"normal-operations"
],
"framework": "infrastructure"
},
{
"id": "component-community-channels",
"type": "component",
"title": "Community channels",
"summary": "Discord, Telegram, support inboxes, and social accounts that attackers impersonate or hijack.",
"domains": [
"community-communications"
],
"status": "proposed",
"tags": [
"discord",
"social"
],
"roles": [
"community-manager"
],
"lifecycle": [
"normal-operations"
],
"framework": "community-management"
},
{
"id": "component-custodial-treasury",
"type": "component",
"title": "Custodial treasury",
"summary": "Third-party or co-managed custody that holds organizational funds. Not the protocol governance multisig.",
"domains": [
"governance-treasury"
],
"status": "proposed",
"tags": [
"custody",
"treasury",
"custodian"
],
"roles": [
"governance-participant",
"founder-executive"
],
"lifecycle": [
"normal-operations",
"incident-response"
],
"framework": "treasury-operations"
},
{
"id": "component-dependency-graph",
"type": "component",
"title": "Dependency graph",
"summary": "Third-party packages, lockfiles, and registries the build consumes. A poisoned package becomes your code.",
"domains": [
"development-supply-chain"
],
"status": "proposed",
"tags": [
"dependencies",
"npm",
"supply-chain"
],
"roles": [
"engineer-developer"
],
"lifecycle": [
"development"
],
"framework": "supply-chain"
},
{
"id": "component-developer-devices",
"type": "component",
"title": "Developer and signer devices",
"summary": "Laptops, phones, and browsers used to write code, approve CI, or sign transactions.",
"domains": [
"devices-identity"
],
"status": "proposed",
"tags": [
"endpoint",
"devices"
],
"roles": [
"engineer-developer",
"multisig-signer"
],
"lifecycle": [
"normal-operations"
],
"framework": "opsec"
},
{
"id": "component-dns-registrar",
"type": "component",
"title": "DNS and registrar accounts",
"summary": "Registrar logins, DNS panels, and nameserver configuration that decide where a domain points.",
"domains": [
"infrastructure"
],
"status": "proposed",
"tags": [
"dns",
"registrar"
],
"roles": [
"infrastructure-operator"
],
"lifecycle": [
"normal-operations"
],
"framework": "infrastructure"
},
{
"id": "component-family-household",
"type": "component",
"title": "Family and household",
"summary": "People and staff close to a key-holder. Attackers coerce them to reach keys the target will not surrender for themselves.",
"domains": [
"people"
],
"status": "proposed",
"tags": [
"family",
"household"
],
"roles": [
"founder-executive",
"multisig-signer"
],
"lifecycle": [
"normal-operations",
"incident-response"
],
"framework": "physical-security"
},
{
"id": "component-founders-executives",
"type": "component",
"title": "Founders and executives",
"summary": "High-authority people who are attractive phishing and coercion targets and often also hold signer or admin roles.",
"domains": [
"people"
],
"status": "proposed",
"tags": [
"leadership",
"executives"
],
"roles": [
"founder-executive"
],
"lifecycle": [
"normal-operations"
]
},
{
"id": "component-frontend",
"type": "component",
"title": "Web frontend",
"summary": "The site or app users load before connecting a wallet. Integrity failures here steal user funds without touching contracts.",
"domains": [
"infrastructure"
],
"status": "proposed",
"tags": [
"frontend",
"ui"
],
"roles": [
"engineer-developer",
"infrastructure-operator"
],
"lifecycle": [
"normal-operations"
],
"framework": "front-end-web-app"
},
{
"id": "component-governance-module",
"type": "component",
"title": "Governance module",
"summary": "On-chain or off-chain proposal machinery that can move treasury or change protocol rules.",
"domains": [
"governance-treasury"
],
"status": "proposed",
"tags": [
"governance",
"proposals"
],
"roles": [
"governance-participant"
],
"lifecycle": [
"normal-operations",
"upgrade"
],
"framework": "governance"
},
{
"id": "component-hardware-wallet",
"type": "component",
"title": "Hardware wallet",
"summary": "A dedicated signing device that keeps keys offline and shows destination and amount on its own screen.",
"domains": [
"devices-identity",
"governance-treasury"
],
"status": "proposed",
"tags": [
"hardware-wallet",
"cold-wallet"
],
"roles": [
"multisig-signer"
],
"lifecycle": [
"normal-operations"
],
"framework": "wallet-security"
},
{
"id": "component-hiring-pipeline",
"type": "component",
"title": "Hiring pipeline",
"summary": "Recruiting, contracting, and access-granting steps that can admit a planted operator into code or infrastructure.",
"domains": [
"people"
],
"status": "proposed",
"tags": [
"hiring",
"contractors",
"dprk"
],
"roles": [
"founder-executive"
],
"lifecycle": [
"normal-operations"
],
"framework": "opsec"
},
{
"id": "component-identity-accounts",
"type": "component",
"title": "Identity and admin accounts",
"summary": "Cloud, GitHub, registrar, and SaaS identities that grant privileged access when taken over.",
"domains": [
"devices-identity",
"infrastructure"
],
"status": "proposed",
"tags": [
"iam",
"accounts"
],
"roles": [
"infrastructure-operator"
],
"lifecycle": [
"normal-operations"
],
"framework": "iam"
},
{
"id": "component-monitoring-stack",
"type": "component",
"title": "Monitoring stack",
"summary": "On-chain watchers, logs, and alerting that decide whether an attack is noticed in time to contain it.",
"domains": [
"detection-incident-response"
],
"status": "proposed",
"tags": [
"monitoring",
"alerting"
],
"roles": [
"security-engineer",
"incident-responder"
],
"lifecycle": [
"normal-operations",
"incident-response"
],
"framework": "monitoring"
},
{
"id": "component-multisig",
"type": "component",
"title": "Protocol multisig",
"summary": "The multi-signature account that holds treasury, upgrade, or pause authority for the protocol.",
"domains": [
"governance-treasury"
],
"status": "proposed",
"tags": [
"multisig",
"safe"
],
"roles": [
"multisig-signer"
],
"lifecycle": [
"normal-operations",
"upgrade"
],
"framework": "multisig-for-protocols"
},
{
"id": "component-rpc-endpoints",
"type": "component",
"title": "RPC endpoints",
"summary": "JSON-RPC or similar nodes the product trusts for chain state and transaction broadcast.",
"domains": [
"infrastructure",
"onchain-systems"
],
"status": "proposed",
"tags": [
"rpc",
"nodes"
],
"roles": [
"infrastructure-operator",
"engineer-developer"
],
"lifecycle": [
"normal-operations"
],
"framework": "infrastructure"
},
{
"id": "component-seed-backup",
"type": "component",
"title": "Seed backup",
"summary": "Offline copies of the seed phrase: paper, metal, or split shares. Physical access here is wallet takeover.",
"domains": [
"devices-identity",
"people"
],
"status": "proposed",
"tags": [
"seed-phrase",
"backup"
],
"roles": [
"multisig-signer"
],
"lifecycle": [
"normal-operations",
"recovery"
],
"framework": "wallet-security"
},
{
"id": "component-signers",
"type": "component",
"title": "Signers",
"summary": "People and devices that hold shares of a privileged multisig. Their laptops and judgment are part of the control system.",
"domains": [
"people",
"governance-treasury"
],
"status": "proposed",
"tags": [
"signers",
"people"
],
"roles": [
"multisig-signer"
],
"lifecycle": [
"normal-operations"
]
},
{
"id": "component-smart-contracts",
"type": "component",
"title": "Smart contracts",
"summary": "On-chain programs that custody funds or enforce protocol rules, including proxies and upgrade modules.",
"domains": [
"onchain-systems"
],
"status": "proposed",
"tags": [
"contracts",
"evm"
],
"roles": [
"engineer-developer"
],
"lifecycle": [
"design",
"development",
"upgrade"
],
"framework": "external-security-reviews"
},
{
"id": "component-software-wallet",
"type": "component",
"title": "Software wallet",
"summary": "A hot wallet on a phone or browser that signs from an internet-connected device. Convenience with a larger remote attack surface.",
"domains": [
"devices-identity",
"onchain-systems"
],
"status": "proposed",
"tags": [
"software-wallet",
"hot-wallet"
],
"roles": [
"multisig-signer"
],
"lifecycle": [
"normal-operations"
],
"framework": "wallet-security"
},
{
"id": "control-branch-protection",
"type": "control",
"title": "Repository branch protection",
"summary": "Required reviews, signed commits or equivalent, and restricted who can push to release branches.",
"domains": [
"development-supply-chain"
],
"status": "proposed",
"tags": [
"github",
"branch-protection"
],
"roles": [
"engineer-developer"
],
"lifecycle": [
"development"
],
"controlClass": "preventive",
"assessmentEligible": true,
"framework": "devsecops"
},
{
"id": "control-bug-bounty-program",
"type": "control",
"title": "Bug bounty program",
"summary": "Pay independent researchers under clear scope, rewards, and triage capacity. Pair it with a durable security contact. This is not Safe Harbor for live exploits.",
"domains": [
"development-supply-chain",
"onchain-systems"
],
"status": "proposed",
"tags": [
"bounty",
"disclosure"
],
"roles": [
"security-engineer"
],
"lifecycle": [
"normal-operations"
],
"controlClass": "detective",
"assessmentEligible": true,
"framework": "vulnerability-disclosure"
},
{
"id": "control-cloud-hardening",
"type": "control",
"title": "Cloud account hardening",
"summary": "Root protection, scoped IAM, logging, and configuration baselines on the cloud accounts that host the product.",
"domains": [
"infrastructure"
],
"status": "proposed",
"tags": [
"cloud",
"iam"
],
"roles": [
"infrastructure-operator"
],
"lifecycle": [
"normal-operations"
],
"controlClass": "preventive",
"assessmentEligible": true,
"framework": "infrastructure"
},
{
"id": "control-cloud-kms-custody",
"type": "control",
"title": "Cloud KMS key custody",
"summary": "Encrypt cloud data at rest with a KMS or BYOK design. Do not leave keys in the same breach domain as the ciphertext.",
"domains": [
"infrastructure"
],
"status": "proposed",
"tags": [
"kms",
"cloud",
"at-rest"
],
"roles": [
"infrastructure-operator"
],
"lifecycle": [
"design",
"normal-operations"
],
"controlClass": "preventive",
"assessmentEligible": true,
"framework": "encryption"
},
{
"id": "control-cold-wallet-separation",
"type": "control",
"title": "Cold and hot wallet separation",
"summary": "Keep high-value keys on offline or hardware signers. Use a hot wallet only for amounts you can afford to lose.",
"domains": [
"devices-identity",
"governance-treasury"
],
"status": "proposed",
"tags": [
"cold-wallet",
"isolation"
],
"roles": [
"multisig-signer"
],
"lifecycle": [
"normal-operations"
],
"controlClass": "preventive",
"assessmentEligible": true,
"framework": "wallet-security"
},
{
"id": "control-continuous-remote-identity-review",
"type": "control",
"title": "Continuous remote identity review",
"summary": "Keep checking remote workers after hire: camera-on presence, identity consistency, and access that still matches the role.",
"domains": [
"people"
],
"status": "proposed",
"tags": [
"hiring",
"identity",
"dprk"
],
"roles": [
"founder-executive"
],
"lifecycle": [
"normal-operations"
],
"controlClass": "detective",
"assessmentEligible": true,
"framework": "dprk-it-workers"
},
{
"id": "control-controlled-surrender",
"type": "control",
"title": "Controlled-surrender wallet",
"summary": "A believable low-value path an attacker can take immediately. Core reserves stay behind delay and extra approvals the victim cannot skip.",
"domains": [
"people",
"governance-treasury"
],
"status": "proposed",
"tags": [
"duress",
"decoy",
"surrender"
],
"roles": [
"multisig-signer",
"founder-executive"
],
"lifecycle": [
"design",
"normal-operations",
"incident-response"
],
"controlClass": "preventive",
"assessmentEligible": true,
"framework": "physical-security"
},
{
"id": "control-default-e2ee-messaging",
"type": "control",
"title": "Default end-to-end encrypted messaging",
"summary": "Put sensitive ops on messengers with E2EE on by default and verified safety numbers. Cloud backups and metadata still leak. Discord is not this control.",
"domains": [
"community-communications"
],
"status": "proposed",
"tags": [
"e2ee",
"messaging"
],
"roles": [
"founder-executive",
"engineer-developer",
"community-manager"
],
"lifecycle": [
"normal-operations",
"incident-response"
],
"controlClass": "preventive",
"assessmentEligible": true,
"framework": "privacy"
},
{
"id": "control-dependency-pinning-provenance",
"type": "control",
"title": "Dependency pinning and provenance",
"summary": "Lockfiles, pinned versions, and provenance or signature checks so installs cannot silently float to a malicious release.",
"domains": [
"development-supply-chain"
],
"status": "proposed",
"tags": [
"lockfile",
"provenance"
],
"roles": [
"engineer-developer"
],
"lifecycle": [
"development"
],
"controlClass": "preventive",
"assessmentEligible": true,
"framework": "supply-chain"
},
{
"id": "control-device-hardening",
"type": "control",
"title": "Device hardening",
"summary": "OS baselines, disk encryption, auto-update, and browser isolation on devices that touch code or keys.",
"domains": [
"devices-identity"
],
"status": "proposed",
"tags": [
"endpoint",
"hardening"
],
"roles": [
"engineer-developer",
"multisig-signer"
],