Story #8192
As a user, I can rest easy with all sensitive credentials in the database encrypted at rest
0%
Description
Motivation¶
Pulp stores sensitive credentials, e.g. password for Basic Auth, proxy password, or client key for client certificate based authentication in the database in plaintext. The authentication and authorization mechanisms of Pulp keep these safe, but if the database itself was compromised, or dumped, those secrets would be readable to anyone with a copy.
Proposal¶
Encrypt these credentials when they live in the database and decrypt them when they are used. This encryption would use symmetric encryption with a key stored on the filesystem that is generated at install time. A good option would be Fernet symmetric key encryption from the cryptography
library.
Related to Story on Removing Secrets from API Response
The scope of the fields that are encrypted should be the same as those that are no longer returned in the API due to sensitivity. See Story 8202 for the list of fields.
Installation Details¶
The private key will need to be generated at install time. We need to determine where to keep these by default securely. They need to be readable by code without a human involved.
Related issues
History
#3
Updated by bmbouter 2 months ago
- Blocked by Task #8202: Make sensitive fields write_only and stop filtering on them added
#4
Updated by bmbouter about 2 months ago
- Tags Katello added
#5
Updated by bmbouter about 2 months ago
- Tags GalaxyNG added
- Tags deleted (
Katello)
Please register to edit this issue