-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
2811 lines (2810 loc) · 132 KB
/
config.json
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
{
"organization": {
"companyFullName": "Above Property LLC.",
"companyShortName": "APS",
"companyEmailDomain": "aboveproperty.com",
"companyWebsiteURL": "https://www.aboveproperty.com",
"companyMailingAddress": "3555 Kraft Road, Suite 400 Naples Fl 34105 USA",
"companyOverview": "An advanced, multi-tenant, rules based global travel solution.",
"contactPhoneNumber": "(239) 263-7406",
"ceoName": "Aaron Shepherd",
"ceoEmail": "aaron.shepherd@aboveproperty.com",
"cooName": "Steve Lapekas",
"cooEmail": "steve.lapekas@aboveproperty.com",
"ctoName": "Tim Kieschnick",
"ctoEmail": "tim.kieschnick@aboveproperty.com",
"securityOfficerName": "Pete Ehlke",
"securityOfficerEmail": "pete.ehlke@aboveproperty.com",
"privacyOfficerName": "Pete Ehlke",
"privacyOfficerEmail": "pete.ehlke@aboveproperty.com",
"securityCommitteeMembers": "Security Officer, CTO, CIO, COO, CEO",
"wantCustomMkdocsTemplate": false,
"mkdocsLogoURL": "",
"mkdocsThemeColorPrimary": "",
"mkdocsThemeColorAccent": "",
"securityPolicyURL": "https://compliance.aboveproperty.com",
"privacyPolicyURL": "https://compliance.aboveproperty.com/privacy-policy/",
"cookiePolicyURL": "https://compliance.aboveproperty.com/cookie-policy",
"sourceControl": "GitHub",
"ticketingSystem": "Rally",
"internalHelpdeskURL": "mailto:helpdesk@aboveproperty.com",
"policyRepoURL": "https://github.com/aboveproperty/security-policies",
"cmPortal": "https://rally1.rallydev.com",
"ciSystem": "Jenkins",
"hrSystem": "TriNet",
"supportBYODandMDM": true,
"haveSecurityScorecard": false,
"securityScorecardPeriod": "none",
"securityScorecardURL": "N/A",
"expenseReporting": "",
"devWikiURL": "",
"hipaaTrainingURL": "",
"statusPageURL": "",
"securityAwarenessTrainingProvider": "GLS On Demand",
"onCallPagingProvider": "PagerDuty",
"IdP": "",
"CPA": "",
"needStandardHIPAA": false,
"needStandardHITRUST": false,
"needStandardGDPR": true,
"needStandardNIST": true,
"needStandardPCI": true,
"needWhistleblower": false,
"isServiceProvider": true,
"isHIPAACoveredEntity": false,
"isHIPAABusinessAssociate": false,
"isHIPAAGovernmentEntity": false,
"isHIPAAPlanSponsor": false,
"isHIPAAHealthcareClearinghouse": false,
"currentRevision": "Last Reviewed: 2024-09-11:08:37:16-MST"
},
"standards": [
{
"id": "hipaa",
"file": "st-hipaa.md",
"name": "HIPAA",
"type": "compliance",
"supported": true,
"adopted": false
},
{
"id": "hitrust-csf",
"file": "st-hitrust.md",
"name": "HITRUST Common Security Framework",
"type": "certification",
"supported": true,
"adopted": false
},
{
"id": "nist-csf",
"file": "st-nist.md",
"name": "NIST Cybersecurity Framework",
"type": "standard",
"supported": false,
"adopted": false
},
{
"id": "iso2700x",
"file": "st-iso2700x.md",
"name": "ISO 27001/27002",
"type": "standard",
"supported": false,
"adopted": false
},
{
"id": "cis",
"file": "st-cis.md",
"name": "CIS Critical Security Controls",
"type": "standard",
"supported": true,
"adopted": true
},
{
"id": "owasp",
"file": "st-owasp.md",
"name": "OWASP Top Ten",
"type": "best-practice",
"supported": false,
"adopted": true
},
{
"id": "pci",
"file": "st-pci.md",
"name": "PCI-DSS",
"type": "compliance",
"supported": true,
"adopted": true
},
{
"id": "gdpr",
"file": "st-gdpr.md",
"name": "EU General Data Protection Regulation (GDPR)",
"type": "compliance",
"supported": false,
"adopted": false
}
],
"domains": [
{
"id": "AI",
"name": "Assets and Infrastructure",
"policies": [
"asset-mgmt",
"ccm",
"mdm"
],
"procedures": []
},
{
"id": "PA",
"name": "People and Access",
"policies": [
"access",
"hr",
"rar"
],
"procedures": []
},
{
"id": "VM",
"name": "Vulnerability Management",
"policies": [
"vuln-mgmt"
],
"procedures": []
},
{
"id": "SD",
"name": "Software Development",
"policies": [
"sdlc"
],
"procedures": []
},
{
"id": "DA",
"name": "Data and Applications",
"policies": [
"data-mgmt",
"data-protection"
],
"procedures": []
},
{
"id": "OR",
"name": "Operations and Response",
"policies": [
"model",
"bcdr",
"breach",
"system-audit",
"threat"
],
"procedures": []
},
{
"id": "PS",
"name": "Physical and Datacenter Security",
"policies": [
"facility"
],
"procedures": []
},
{
"id": "GRC",
"name": "Governance, Risk and Compliance",
"policies": [
"bcdr",
"compliance-audit",
"corp-gov",
"policy-mgmt",
"privacy",
"rar",
"risk-mgmt",
"vendor"
],
"procedures": []
}
],
"policies": [
{
"id": "program",
"file": "policies/program.md",
"name": "Security Program Overview",
"adopted": true,
"procedures": [
"cp-ism-scope",
"cp-ism-policies",
"cp-ism-reporting"
]
},
{
"id": "corp-gov",
"file": "policies/corp-gov.md",
"name": "Corporate Governance",
"adopted": true,
"procedures": [
"cp-gov-bod"
]
},
{
"id": "policy-mgmt",
"file": "policies/policy-mgmt.md",
"name": "Policy Management",
"adopted": true,
"procedures": [
"cp-policy-framework",
"cp-policy-mgmt"
]
},
{
"id": "model",
"file": "policies/model.md",
"name": "Security Architecture and Operating Model",
"adopted": true,
"procedures": [
"cp-model-principles",
"cp-model-architecture",
"cp-model-metrics",
"cp-model-quality"
]
},
{
"id": "rar",
"file": "policies/rar.md",
"name": "Roles, Responsibilities and Training",
"adopted": true,
"procedures": [
"cp-role-assignment",
"cp-training-policy",
"cp-training-awareness",
"cp-training-hipaa",
"cp-internal-comms"
]
},
{
"id": "risk-mgmt",
"file": "policies/risk-mgmt.md",
"name": "Risk Management and Risk Assessment Process",
"adopted": true,
"procedures": [
"cp-risk-mgmt-objectives",
"cp-risk-mgmt",
"cp-risk-assess",
"cp-risk-mitigation",
"cp-risk-registry",
"cp-risk-insurance",
"cp-risk-fraud"
]
},
{
"id": "compliance-audit",
"file": "policies/compliance-audit.md",
"name": "Compliance Audits and External Communications",
"adopted": true,
"procedures": [
"cp-compliance-mgmt",
"cp-compliance-requests",
"cp-compliance-monitor"
]
},
{
"id": "system-audit",
"file": "policies/system-audit.md",
"name": "System Audits, Monitoring and Assessments",
"adopted": true,
"procedures": [
"cp-audit-types",
"cp-events-analysis",
"cp-audit-internal",
"cp-audit-request",
"cp-audit-review",
"cp-audit-control-deficiency",
"cp-audit-trails",
"cp-audit-trails-integrity",
"cp-audit-customers",
"cp-audit-tools",
"cp-audit-training"
]
},
{
"id": "hr",
"file": "policies/hr.md",
"name": "HR and Personnel Security",
"adopted": true,
"procedures": [
"cp-hr-mgmt",
"cp-employee-acceptable-use",
"cp-employee-screening",
"cp-employee-onboarding",
"cp-employee-exiting",
"cp-employee-escalation",
"cp-employee-whistleblower",
"cp-employee-performance",
"cp-employee-recognition",
"cp-employee-development",
"cp-sanctions"
]
},
{
"id": "access",
"file": "policies/access.md",
"name": "Access",
"adopted": true,
"procedures": [
"cp-access-standards",
"cp-access-password",
"cp-access-sso",
"cp-access-mfa",
"cp-access-passkey",
"cp-access-rbac",
"cp-access-aws",
"cp-access-vpn",
"cp-access-phi",
"cp-access-customer",
"cp-access-change",
"cp-access-review",
"cp-access-privileged",
"cp-access-service",
"cp-access-endpoints",
"cp-access-wifi",
"cp-access-prod",
"cp-access-prod-data",
"cp-access-reset"
]
},
{
"id": "facility",
"file": "policies/facility.md",
"name": "Facility Access and Physical Security",
"adopted": true,
"procedures": [
"cp-physical",
"cp-physical-datacenter",
"cp-physical-cleandesk"
]
},
{
"id": "asset-mgmt",
"file": "policies/asset-mgmt.md",
"name": "Asset Inventory Management",
"adopted": true,
"procedures": [
"cp-asset-physical",
"cp-asset-digital",
"cp-asset-paper"
]
},
{
"id": "data-mgmt",
"file": "policies/data-mgmt.md",
"name": "Data Management",
"adopted": true,
"procedures": [
"cp-data-classification",
"cp-data-handling",
"cp-data-lifecycle",
"cp-data-backup",
"cp-data-deletion"
]
},
{
"id": "data-protection",
"file": "policies/data-protection.md",
"name": "Data Protection",
"adopted": true,
"procedures": [
"cp-data-protection",
"cp-data-protection-at-rest",
"cp-data-protection-in-transit",
"cp-data-protection-in-use",
"cp-data-protection-kms",
"cp-data-protection-cert",
"cp-data-protection-integrity"
]
},
{
"id": "sdlc",
"file": "policies/sdlc.md",
"name": "Secure Software Development and Product Security",
"adopted": true,
"procedures": [
"cp-sdlc-dev",
"cp-sdlc-scm",
"cp-sdlc-appsec-req",
"cp-sdlc-design",
"cp-sdlc-iaaa",
"cp-sdlc-foss",
"cp-sdlc-sast",
"cp-sdlc-dast",
"cp-sdlc-pentest",
"cp-sdlc-bugbounty",
"cp-sdlc-outsourcing",
"cp-sdlc-hipaa",
"cp-sdlc-monitor"
]
},
{
"id": "ccm",
"file": "policies/ccm.md",
"name": "Configuration and Change Management",
"adopted": true,
"procedures": [
"cp-ccm-config",
"cp-ccm-monitor",
"cp-ccm-provision-prod",
"cp-ccm-provision-endpoint",
"cp-ccm-provision-server",
"cp-ccm-provision-mgmt",
"cp-ccm-network",
"cp-ccm-aws",
"cp-ccm-aws-deploy",
"cp-ccm-patch",
"cp-ccm-prodcm",
"cp-ccm-emergency"
]
},
{
"id": "threat",
"file": "policies/threat.md",
"name": "Threat Detection and Prevention",
"adopted": true,
"procedures": [
"cp-threat-malware",
"cp-threat-firewall",
"cp-threat-nids",
"cp-threat-hids",
"cp-threat-webapp",
"cp-threat-siem",
"cp-threat-intel"
]
},
{
"id": "vuln-mgmt",
"file": "policies/vuln-mgmt.md",
"name": "Vulnerability Management",
"adopted": true,
"procedures": [
"cp-vuln-scan",
"cp-vuln-remediation"
]
},
{
"id": "mdm",
"file": "policies/mdm.md",
"name": "Mobile Device Security and Media Management",
"adopted": true,
"procedures": [
"cp-mdm-disposal",
"cp-mdm-usb",
"cp-mdm-byod"
]
},
{
"id": "bcdr",
"file": "policies/bcdr.md",
"name": "Business Continuity and Disaster Recovery",
"adopted": true,
"procedures": [
"cp-bcdr",
"cp-bcdr-recovery",
"cp-bcdr-test",
"cp-bcdr-site",
"cp-bcdr-app",
"cp-bcdr-data"
]
},
{
"id": "ir",
"file": "policies/ir.md",
"name": "Incident Response",
"adopted": true,
"procedures": [
"cp-ir-sirt",
"cp-ir-process",
"cp-ir-playbook",
"cp-ir-emergency",
"cp-ir-tabletop",
"cp-ir-records"
]
},
{
"id": "breach",
"file": "policies/breach.md",
"name": "Breach Investigation and Notification",
"adopted": true,
"procedures": [
"cp-breach-investigate",
"cp-breach-customer",
"cp-breach-letter",
"cp-breach-authorities"
]
},
{
"id": "vendor",
"file": "policies/vendor.md",
"name": "Third Party Security and Vendor Risk Management",
"adopted": true,
"procedures": [
"cp-vendor-vtr",
"cp-vendor-contracts",
"cp-vendor-monitor",
"cp-vendor-ssa"
]
},
{
"id": "privacy",
"file": "policies/privacy.md",
"name": "Privacy Practice and Consent",
"adopted": true,
"procedures": [
"cp-privacy-notices"
]
},
{
"id": "genAI",
"file": "policies/artificial-intelligence.md",
"name": "Use of Generative AI",
"adopted": true,
"procedures": []
}
],
"procedures": [
{
"id": "cp-pci-charter",
"file": "procedures/cp-pci-charter.md",
"name": "PCI DSS Charter",
"type": "informational",
"provider": "Above Property",
"summary": "The organization has an established PCI DSS compliance program with appropriate controls that are aligned to the organization's objectives and risk posture.",
"guidance": "This describes the organization's PCI DSS Program Charter, high level controls, and program management processes.",
"considerations": [
"Which standards, domains, frameworks, etc. does your security program address?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-pci-dss4-notes",
"file": "procedures/cp-pci-dss4-notes.md",
"name": "PCI DSS4 Notes",
"type": "informational",
"provider": "Above Property",
"summary": "The organization has documented all exception items from the DSS 4 standard",
"guidance": "This describes the organizations required exceptions documentation.",
"considerations": [
""
],
"applicable": true,
"adopted": true
},
{
"id": "cp-ism-scope",
"file": "procedures/cp-ism-scope.md",
"name": "Information Security Program and Scope",
"type": "informational",
"provider": "Above Property",
"summary": "The organization has an established security program with appropriate controls that are aligned to the organization's objectives and risk posture.",
"guidance": "This describes the organization's information security program scope, high level controls, and program management processes.",
"considerations": [
"Which standards, domains, frameworks, etc. does your security program address?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-ism-policies",
"file": "procedures/cp-ism-policies.md",
"name": "Understanding the Policies and Controls/Procedures",
"type": "informational",
"provider": "Above Property",
"summary": "The organization's security program maintains documentation of high level policies and lower level controls and procedures. The policies and procedures cover the design, development, implementation, operation, maintenance and monitoring of in-scope systems.",
"guidance": "This describes how information security policies are structured.",
"applicable": true,
"adopted": true
},
{
"id": "cp-ism-reporting",
"file": "procedures/cp-ism-reporting.md",
"name": "Review and Reporting",
"type": "informational",
"provider": "Above Property",
"summary": "Metrics are defined to measure the effectiveness of controls and they are reported to/reviewed by senior management.",
"guidance": "This describes the key metrics and high level reporting process for the information security management program.",
"applicable": true,
"adopted": true
},
{
"id": "cp-gov-bod",
"file": "procedures/cp-gov-bod.md",
"name": "Board of Directors Responsibilities",
"type": "administrative",
"summary": "A board of directors is established that demonstrates independence from management and exercises oversight of the organization's development, performance, and internal controls.",
"guidance": "Establishing a board of directors with clearly defined responsibilities is instrumental to the effective corporate governance and executive oversight. It helps maintain organizational transparency, ensure ethical business operations, and protect stakeholder interests.",
"applicable": true,
"adopted": true
},
{
"id": "cp-model-principles",
"file": "procedures/cp-model-principles.md",
"name": "Security Principles",
"type": "informational",
"provider": "",
"summary": "The organization incorporates best practices such as least-privilege or zero-trust in its security operating model.",
"guidance": "This describes the high level operating principles of a DevOps oriented security program. The cloud-native, zero-trust approach enables a modern security operating model and eliminates the need for certain legacy security controls.",
"considerations": [
"Do you use a microservice architecture?",
"Do your employees receive regular ongoing security awareness training more than once a year?",
"Do you have a bug bounty or public vulnerability disclosure program?",
"Is your organization subject to regulatory compliance such as HIPAA or FISMA?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-model-quality",
"file": "procedures/cp-model-quality.md",
"name": "System Quality",
"type": "informational",
"provider": "",
"summary": "The organization communicates its commitment to quality of service to its users and customers.",
"guidance": "This describes at a high level how system quality assurance is managed and provides references to further documentation",
"considerations": [
"Where do you publish the status of external facing customer applications (uptime)?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-model-architecture",
"file": "procedures/cp-model-architecture.md",
"name": "Security Architecture",
"type": "technical",
"provider": "Above Property",
"summary": "Security architecture is documented, including system and infrastructure security diagrams.",
"guidance": "A good security architecture is the starting point of a strong program foundation. You will need to maintain an up to date architecture diagram for security reviews with customers and auditors. Above Property can help automate the generation of network and application architecture diagrams in your cloud environments, so you don't have to spend time maintaining and updating it every time something changes.",
"considerations": [
"Which cloud service provider & corresponding products/services do you use?"
],
"applicable": true,
"adopted": true,
"resources": [
{
"name": "AWS Security Whitepaper",
"link": "https://d1.awsstatic.com/whitepapers/Security/AWS_Security_Whitepaper.pdf"
}
]
},
{
"id": "cp-model-metrics",
"file": "procedures/cp-model-metrics.md",
"name": "Metrics, Measurements and Continuous Monitoring",
"type": "operational",
"provider": "Above Property",
"summary": "Metrics are defined to measure the effectiveness of controls and they are continuously monitored.",
"guidance": "You will need to define a set of KPIs and metrics for monitoring and reporting on the effectiveness of the security controls. You can leverage Above Property's querying/reporting capability to automate the reporting process.",
"considerations": [
"How frequently will scorecards be produced?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-role-assignment",
"file": "procedures/cp-role-assignment.md",
"name": "Assignment of Roles and the Security Committee",
"type": "administrative",
"provider": "Above Property",
"summary": "Security and compliance roles and responsibilities are clearly defined to ensure segregation of duties.",
"guidance": "Regulatory compliance frameworks, such as HIPAA, require formal assignment of security and privacy responsibilities to someone in your organization. As your organization expands and matures, you may want to form an executive level security committee to meet this requirement. Often, such a committee is a requirement of security certifications. You can manage this role assignment manually (I.E. in this documented policy/control procedure) or in the Above Property's app. Using Above Property, you can almost always avoid implementing a complicated enterprise GRC system.",
"considerations": [
"What responsibilities will you commit to?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-training-policy",
"file": "procedures/cp-training-policy.md",
"name": "Policy and Compliance Training",
"type": "administrative",
"provider": "Above Property",
"summary": "Employees and contractors receive training on the organization's security policies and procedures.",
"guidance": "You will need to ensure all your employees are properly trained on the security policies and procedures. You may leverage a full featured learning management system (LMS) to develop, distribute, and track this training. Above Property also supports a simple process that allows your employees to access your security policies and procedures, and capture their acknowledgement.",
"considerations": [
"What is your current employee training program for policies and compliance?",
"What is your retention duration of materials?",
"Which compliance frameworks do you cover?",
"What is your inactivity duration before log off for applications that store sensitive data?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-training-awareness",
"file": "procedures/cp-training-awareness.md",
"name": "Ongoing Security Awareness Training",
"type": "administrative",
"provider": "KnowBe4",
"summary": "Employees and contractors receive ongoing security awareness training at least annually.",
"guidance": "Ongoing security awareness training is foundational to the overall risk reduction for any organization, not to mention is a compliance requirement almost universally. Our recommendation is to leverage a vendor, Ataata, who provides a low-cost and engaging way to keep your folks trained. All it takes is less than 5 minutes of everyone's time to watch a fun video and take a quiz every month.",
"considerations": [
"What tooling is used for security awareness and what topics are covered?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-training-hipaa",
"file": "procedures/cp-training-hipaa.md",
"name": "Annual HIPAA Awareness Training",
"type": "administrative",
"provider": "KnowBe4",
"summary": "Employees and contractors working with patient data and protected health information (PHI) are required to take HIPAA awareness training within 30 days of onboarding and annually thereafter.",
"guidance": "If your organization is subject to HIPAA compliance, you must ensure all workforce members take a HIPAA awareness training annually. You may sign up with a vendor like Ataata to access training content, or alternatively, you may leverage an open-source training Above Property provides as a start.",
"considerations": [
"What tooling do you use for HIPAA or FISMA Awareness Training?",
"What interval do employees to have to complete training?"
],
"applicable": false,
"adopted": false,
"resources": [
{
"name": "View/download HIPAA awareness training package",
"link": "https://github.com/JupiterOne/security-training-templates"
}
]
},
{
"id": "cp-internal-comms",
"file": "procedures/cp-internal-comms.md",
"name": "Internal Business Communications",
"type": "administrative",
"provider": "",
"summary": "Management and each individual department/team holds regular company-wide / departmental / team meetings to review and discuss various aspects of business performance and objectives.",
"guidance": "It is important to keep everyone on team / in the company regularly updated on the overall business strategy, goals and performance. One example is weekly/monthly roundtable or townhalls. At the individual team level, this could be the daily development standups/scrum sessions. This helps fosture an engaging, transparent and fast-moving culture.",
"considerations": [
"What is your company-wide communication frequency?"
],
"applicable": false,
"adopted": false,
"resources": []
},
{
"id": "cp-policy-framework",
"file": "procedures/cp-policy-framework.md",
"name": "Policies and Controls Framework",
"type": "administrative",
"provider": "Above Property",
"summary": "The organization maintains a set of policies and controls that captures standards, regulatory, legal, and statutory requirements relevant to the business needs. The framework and its contents are reviewed at least annually.",
"guidance": "There should be a defined structure to maintain policies and controls. A process and/or governance tooling should be implemented to manage the policies, standards, and controls applicable to the organization and its business.",
"applicable": true,
"adopted": true
},
{
"id": "cp-policy-mgmt",
"file": "procedures/cp-policy-mgmt.md",
"name": "Policy Management Process",
"type": "administrative",
"provider": "AWS SecurityHub",
"summary": "A formal process is in place to maintain and update security policies, controls and procedures. Policies, controls and procedures are reviewed at least annually.",
"guidance": "Your security policies and procedures are living documents. They should be reviewed, updated, and distributed on a regular basis. Our recommendation is to manage policy as code (e.g. as a git repo), and this procedure provides the details on how to do that.",
"considerations": [
"What frameworks do you use and how long do you retain them and associated documentation?",
"What is your documents revision process?",
"Where are your backup policies and procedures stored?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-risk-mgmt-objectives",
"file": "procedures/cp-risk-mgmt-objectives.md",
"name": "Risk Management Objectives",
"type": "administrative",
"provider": "",
"summary": "Risk management objectives and acceptable risk levels are defined.",
"guidance": "Ensure high level risk management objectives are defined and aligned with your organization's mission, business model, and risk tolerance.",
"applicable": true,
"adopted": true
},
{
"id": "cp-risk-mgmt",
"file": "procedures/cp-risk-mgmt.md",
"name": "Risk Management Process",
"type": "administrative",
"provider": "JupiterOne",
"summary": "The organization has a risk management policy and defined process for managing risks - including risk identification, mitigation, monitoring, review and approval.",
"guidance": "Risk management involves conducting risk assessment, risk analysis, risk mitigation and the continuous monitoring and management of risks. Risk management is a continuous process.",
"considerations": [
"Can you commit to the risk management process detailed by the 7 procedures?",
"Is your organization subject to regulatory compliance such as HIPAA or FISMA?",
"How long is documentation retained for?",
"How often is this procedure monitored?",
"What tooling do you use to track risks?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-risk-assess",
"file": "procedures/cp-risk-assess.md",
"name": "Risk Assessment and Analysis",
"type": "administrative",
"provider": "JupiterOne",
"summary": "Risk assessments are conducted annually using a defined methodology that identifies the threat, impact, probability, actor and assets targeted/impacted.",
"guidance": "At least annually, a risk assessment should be conducted for your organization. A well established process helps your team perform the assessment and manage the outcome. The assessment itself is often performed manually, supported by tools for the assessment of technical risks, and management tools to help document and track the issues identified. You may document the issues directly in an issue tracking system such as Jira, or preferably, add the identified risks as objects in JupiterOne so that they can be visualized in context with the rest of your operational ecosystem.",
"applicable": true,
"adopted": true
},
{
"id": "cp-risk-mitigation",
"file": "procedures/cp-risk-mitigation.md",
"name": "Risk Mitigation and Monitoring",
"type": "administrative",
"provider": "JupiterOne",
"summary": "A process is defined to guide the prioritization and implementation of risk mitigating controls including but not limited to controls over technology, and to evaluate residual risk.",
"guidance": "Once the risks are identified and analyzed, they need to be addressed with appropriate mitigation plans and implementation of controls. The mitigating controls and residual risks should be continuously monitored and kept up-to-date.",
"applicable": true,
"adopted": true
},
{
"id": "cp-risk-registry",
"file": "procedures/cp-risk-registry.md",
"name": "Risk Registry",
"type": "administrative",
"provider": "JupiterOne",
"summary": "Risks identified from each risk assessment are documented and maintained.",
"guidance": "In many cases, the risk registry is no more than a spreadsheet that serves as the inventory of risks identified as part of each risk assessment. Most mature enterprises implement a Governance, Risk and Compliance (GRC) solution to manage this process. However, a full blown GRC solution is complex and often overkill for a SaaS company. Instead, use JupiterOne to inventory and track your risks.",
"applicable": false,
"adopted": false
},
{
"id": "cp-risk-insurance",
"file": "procedures/cp-risk-insurance.md",
"name": "Cyber Liability Insurance",
"type": "administrative",
"provider": "Acord",
"summary": "The organization holds cyber liability insurance with sufficient coverage based on its risk profile",
"guidance": "Many organizations require their vendor/supplier to have cyber liability insurance to cover damage from potential incidents and breaches. You should always consider insurance as a risk transfer mechanism to offset the financial impact of a risk materializing.",
"considerations": [
"Do you have cyber liability insurance?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-risk-fraud",
"file": "procedures/cp-risk-fraud.md",
"name": "Fraud Risks",
"type": "administrative",
"provider": "",
"summary": "The organization considers both financial and IT fraud risks as part of its risk assessment process, including the pressures/incentives, opportunities and rationalities of people and/or department to commit fraud.",
"guidance": "Many organizations require their vendor/supplier to have cyber liability insurance to cover damage from potential incidents and breaches. You should always consider insurance as a risk transfer mechanism to offset the financial impact of a risk materializing.",
"applicable": false,
"adopted": false
},
{
"id": "cp-compliance-mgmt",
"file": "procedures/cp-compliance-mgmt.md",
"name": "Compliance Program Management",
"type": "administrative",
"provider": "",
"summary": "The organization has a program and defined process to manage compliance to applicable regulatory requirements and contractual obligations.",
"guidance": "Your organization needs to define and document a process to identify and ensure compliance with applicable statutory, regulatory, and contractual requirements.",
"applicable": true,
"adopted": true
},
{
"id": "cp-compliance-requests",
"file": "procedures/cp-compliance-requests.md",
"name": "Requesting Audit and Compliance Reports",
"type": "administrative",
"provider": "",
"summary": "Process and channels are established to communicate the compliance status to external stakeholders.",
"guidance": "You should have a pre-defined process for external entities to request audit and compliance reports.",
"considerations": [
"What email address do you provide to customers for reporting incidents, vulnerabilities, or other security inquiries?",
"What email address do you provide to customers for privacy concerns, including violations reporting?",
"What email address do you provide to customers for compliance issues including requests of audit reports?",
"Is your organization subject to regulatory compliance such as HIPAA or FISMA?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-compliance-monitor",
"file": "procedures/cp-compliance-monitor.md",
"name": "Continuous Compliance Monitoring",
"type": "administrative",
"provider": "AWS SecurityHub",
"summary": "Compliance status is tracked and monitored using an enterprise compliance tool.",
"guidance": "You should implement a mechanism to track the status of regulatory compliance. This can be done using the JupiterOne compliance app instead of manually tracking.",
"applicable": true,
"adopted": true
},
{
"id": "cp-audit-types",
"file": "procedures/cp-audit-types.md",
"name": "Types of System Audits",
"type": "informational",
"provider": "",
"summary": "The organization has defined auditing processes including system configuration monitoring, activity monitoring, access review, and controls compliance audit.",
"guidance": "There are several forms of system audits and they are defined here.",
"considerations": [
"Which cloud services do you allow employees to access?",
"Which IdP do you use?",
"How do you protect network access?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-events-analysis",
"file": "procedures/cp-events-analysis.md",
"name": "Security Event Analysis",
"type": "technical",
"provider": "JupiterOne",
"summary": "The security team monitors system security events and logs via a combination of automated tools and manual reviews.",
"guidance": "Security logs, events, and audit trails should be reviewed on a regular basis. In a mature security practice, this is a major effort of the daily security operations. It should be monitored proactively instead of when a breach occurs. The sheer volume of events can quickly result in alert fatigue. JupiterOne's automated event analysis capability can help without the need of a dedicated and expensive Security Information and Event Management (SIEM).",
"considerations": [
"Where do security events get alerted to?",
"What is your SLA for analysis/reponse/investigation/triage of security events?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-audit-internal",
"file": "procedures/cp-audit-internal.md",
"name": "Manual Internal Auditing Activities",
"type": "administrative",
"provider": "JupiterOne",
"summary": "The organization performs manual testing and reviews of systems, accounts and controls as needed. The audit may be performed by internal teams or external auditors.",
"guidance": "From time to time, an internal audit may be needed on controls and processes that are not already covered via automated monitoring. This process is defined here.",
"considerations": [
"How are manual internal audit and review activities tracked?"
],
"applicable": true,
"adopted": true
},
{
"id": "cp-audit-request",
"file": "procedures/cp-audit-request.md",
"name": "Audit Requests",
"type": "administrative",
"provider": "",
"summary": "A process and channels have been established for internal teams and external entities (such as a customer) to request security reviews or audits.",
"guidance": "The procedure documents how audit requests are handled.",
"applicable": true,
"adopted": true
},
{
"id": "cp-audit-review",
"file": "procedures/cp-audit-review.md",
"name": "Review and Reporting of Audit Findings",
"type": "administrative",
"provider": "JupiterOne",
"summary": "Results of each security assessment or audit are reviewed by security team, senior management, and other designated personnel.",
"guidance": "Upon completion of an audit or assessment, the report and findings should be analyzed so that follow up on actions can be taken accordingly.",
"applicable": true,
"adopted": true
},
{
"id": "cp-audit-control-deficiency",
"file": "procedures/cp-audit-control-deficiency.md",
"name": "Remediation of Control Deficiencies",
"type": "administrative",
"provider": "Jira",
"summary": "Identified control deficiencies are communicated to parties responsible for taking corrective action. Remediation plans are proposed and monitored through resolution.",
"guidance": "Control deficiencies must be reviewed, prioritized, and mitigated.",