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 5 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
42 changes: 41 additions & 1 deletion services/database/relational/controls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ common_controls:

controls:
- id: CCC.RDMS.C01
title: backup database to alternative trust-zone
title: Backup database to alternative trust-zone
eddie-knight marked this conversation as resolved.
Show resolved Hide resolved
objective: |
Ensure that databases are backed up and the backup is outside of the applications trust-zone
control_family: Data
Expand All @@ -29,3 +29,43 @@ controls:
tlp_levels:
- tlp_red
- tlp_amber

- id: CCC.RDMS.C02
title: DB admin passwords must be change from default and the password correctly managed
eddie-knight marked this conversation as resolved.
Show resolved Hide resolved
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.C03
title: Restrict snapshot sharing to authorized accounts
eddie-knight marked this conversation as resolved.
Show resolved Hide resolved
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
18 changes: 9 additions & 9 deletions services/database/relational/threats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ common_threats:

threats:
- id: CCC.RDMS.TH01
title: Unauthorized Access to Database
title: Unauthorized access to database
eddie-knight marked this conversation as resolved.
Show resolved Hide resolved
description: |
A threat actor gains unauthorized access to the cloud relational database by
using a compromised role or using default administrative credentials.
Expand All @@ -25,7 +25,7 @@ threats:
- T1552

- id: CCC.RDMS.TH02
title: Unauthorized Cross Organization Snapshot Collection
title: Unauthorized cross organization snapshot collection
eddie-knight marked this conversation as resolved.
Show resolved Hide resolved
description: |
A threat actor initiates a snapshot collection activity using a privileged role
and copies the snapshot outside of the organization, which allows for data exfiltration and theft.
Expand All @@ -38,7 +38,7 @@ threats:
- T1530

- id: CCC.RDMS.TH03
title: Disabled Logging & Monitoring
title: Disabled logging & monitoring
eddie-knight marked this conversation as resolved.
Show resolved Hide resolved
description: |
A threat actor disables the logging and monitoring of the relational database,
which allows evasion and removes traces of malicious actions.
Expand All @@ -50,7 +50,7 @@ threats:
- T1562

- id: CCC.RDMS.TH04
title: Unauthorized Configuration Modification
title: Unauthorized configuration modification
eddie-knight marked this conversation as resolved.
Show resolved Hide resolved
description: A threat actor attempts to make changes to the configuration of the cloud RDMS with a malicious role.
features:
- CCC.RDMS.F01 # SQL Support
Expand All @@ -61,7 +61,7 @@ threats:
- T1548

- id: CCC.RDMS.TH05
title: Unencrypted Connection To Database
title: Unencrypted connection to database
eddie-knight marked this conversation as resolved.
Show resolved Hide resolved
description: |
An end-user connects to the database over HTTP,
which is susceptible to network sniffing attacks and other exploits.
Expand All @@ -73,7 +73,7 @@ threats:
- T1040

- id: CCC.RDMS.TH06
title: Snapshot Collection with Unauthorized Encryption Key
title: Snapshot collection with unauthorized encryption key
eddie-knight marked this conversation as resolved.
Show resolved Hide resolved
description: |
A threat actor attempts to perform snapshot collection
using a non-default encryption key associated with the RDMS.
Expand Down Expand Up @@ -101,7 +101,7 @@ threats:
- T1485

- id: CCC.RDMS.TH15
title: brute force attack against the database
title: Brute force attack against the database
eddie-knight marked this conversation as resolved.
Show resolved Hide resolved
description: |
threat actor uses brute force attack to discover
database user password, threat actor then has access to the
Expand All @@ -112,9 +112,9 @@ threats:
- T1110

- id: CCC.RDMS.TH16
title: backups stopped
title: Database backups stopped
eddie-knight marked this conversation as resolved.
Show resolved Hide resolved
description: |
threat actor stops backups from occuring
Threat actor stops database backups from occuring to inhibit system recovery.
features:
- CCC.F11
mitre_technique:
Expand Down
Loading