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

Controls work #594

Merged
merged 8 commits into from
Jan 20, 2025
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
40 changes: 40 additions & 0 deletions services/database/relational/controls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,43 @@ controls:
tlp_levels:
- tlp_red
- tlp_amber

- id: CCC.RDMS.C04
title: Password Management
objective: |
DB Admin passwords must be change from their default values and approporatly managed by password or secret
managers.
control_family: Data
threats:
- CCC.RDMS.TH01 # Unauthorized Access to Database
nist_csf: PR.AA-01
control_mappings:
NIST_800_53:
- AC-2
test_requirements:
- id: CCC.RDMS.C01.TR02
text: |
Login to the DB using a default password, it must fail
tlp_levels:
- tlp_red
- tlp_amber

- id: CCC.RDMS.C05
title: Restrict Snapshot Sharing to Authorized Accounts
objective: |
Ensure snapshots are only shared with explicitly authorized account to limit data exposure and reduce data
exfiltration
control_family: data
threats:
- CCC.RDMS.TH02
nist_csf: PR.DS-10
control_mappings:
NIST_800_53:
- AC-4
test_requirements:
- id: CCC.RDMS.C03.TR01
text: |
Attempt to share snapshot with unauthorized account and attempt is denied
tlp_levels:
- tlp_red
- tlp_amber
4 changes: 2 additions & 2 deletions services/database/relational/threats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ threats:
- T1485

- id: CCC.RDMS.TH15
title: Brute force attack against the database
title: Brute Force Attack Against the Database
description: |
Threat actor uses brute force attack to discover
database user password, threat actor then has access to the
Expand All @@ -119,7 +119,7 @@ threats:
- T1110

- id: CCC.RDMS.TH16
title: Database backups stopped
title: Database Backups Stopped
description: |
Threat actor stops database backups from occuring to inhibit
system recovery.
Expand Down
Loading