Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Creation of initial RDMS controls.yaml file #573

Merged
merged 5 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions services/database/relational/controls.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
common_controls:
- CCC.C01 # Prevent unencrypted requests
- CCC.C02 # Ensure data encryption at rest for all stored data
- CCC.C03 # Log all access and changes
- CCC.C04 # Implement multi-factor authentication (MFA) for access
- CCC.C05 # Prevent access from untrusted entities
- CCC.C06 # Prevent deployment in restricted regions
- CCC.C07 # Alert on non-human enumeration
- CCC.C09 # Prevent tampering, deletion, or unauthorized access to access logs
- CCC.C10 # Prevent data replication to destinations outside of defined trust perimeter

controls:
- id: CCC.RDMS.C01
title: backup database to alternative trust-zone
objective: |
Ensure that databases are backed up and the backup is outside of the applications trust-zone
control_family: Data
threats:
- CCC.RDMS.TH14 # DB backup is uninentionally restored
nist_csf: PR.DS-11
control_mappings:
NIST_800_53:
- CP-6
test_requirements:
- id: CCC.RDMS.C01.TR01
text: |
From the same trust-zone as the database attempt to access the database backup and ensure that access is
denied
tlp_levels:
- tlp_red
- tlp_amber
9 changes: 9 additions & 0 deletions services/database/relational/threats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,12 @@ threats:
- CCC.RDMS.F07
mitre_technique:
- T1110

- id: CCC.RDMS.TH16
title: backups stopped
description: |
threat actor stops backups from occuring
features:
- CCC.F11
mitre_technique:
- T1490
Loading