SV-233534r617333_rule
V-233534
SRG-APP-000090-DB-000065
CD12-00-002600
CAT II
10
Configure PostgreSQL's settings to allow designated personnel to select which auditable events are audited.
Using pgaudit allows administrators the flexibility to choose what they log. For an overview of the capabilities of pgaudit, see https://github.com/pgaudit/pgaudit.
See supplementary content APPENDIX-B for documentation on installing pgaudit.
See supplementary content APPENDIX-C for instructions on enabling logging. Only administrators/superuser can change PostgreSQL configurations. Access to the database administrator must be limited to designated personnel only.
To ensure that postgresql.conf is owned by the database owner:
$ chown postgres:postgres ${PGDATA?}/postgresql.conf
$ chmod 600 ${PGDATA?}/postgresql.conf
Note: The following instructions use the PGDATA environment variable. See supplementary content APPENDIX-F for instructions on configuring PGDATA.
Check PostgreSQL settings and documentation to determine whether designated personnel are able to select which auditable events are being audited.
As the database administrator (shown here as "postgres"), verify the permissions for PGDATA:
$ ls -la ${PGDATA?}
If anything in PGDATA is not owned by the database administrator, this is a finding.
Next, as the database administrator, run the following SQL:
$ sudo su - postgres
$ psql -c "\du"
Review the role permissions, if any role is listed as superuser but should not have that access, this is a finding.
V-233534
False
CD12-00-002600
Note: The following instructions use the PGDATA environment variable. See supplementary content APPENDIX-F for instructions on configuring PGDATA.
Check PostgreSQL settings and documentation to determine whether designated personnel are able to select which auditable events are being audited.
As the database administrator (shown here as "postgres"), verify the permissions for PGDATA:
$ ls -la ${PGDATA?}
If anything in PGDATA is not owned by the database administrator, this is a finding.
Next, as the database administrator, run the following SQL:
$ sudo su - postgres
$ psql -c "\du"
Review the role permissions, if any role is listed as superuser but should not have that access, this is a finding.
M
5254