STIGQter STIGQter: STIG Summary: PostgreSQL 9.x Security Technical Implementation Guide Version: 2 Release: 1 Benchmark Date: 23 Oct 2020:

PostgreSQL must generate audit records when unsuccessful attempts to delete privileges/permissions occur.

DISA Rule

SV-214095r508027_rule

Vulnerability Number

V-214095

Group Title

SRG-APP-000499-DB-000331

Rule Version

PGS9-00-005400

Severity

CAT II

CCI(s)

Weight

10

Fix Recommendation

Configure PostgreSQL to produce audit records when unsuccessful attempts to delete privileges occur.

All denials are logged if logging is enabled. To ensure that logging is enabled, review supplementary content APPENDIX-C for instructions on enabling logging.

Check Contents

Note: The following instructions use the PGDATA environment variable. See supplementary content APPENDIX-F for instructions on configuring PGDATA. 

First, as the database administrator (shown here as "postgres"), create the roles joe and bob with LOGIN by running the following SQL: 

$ sudo su - postgres 
$ psql -c "CREATE ROLE joe LOGIN" 
$ psql -c "CREATE ROLE bob LOGIN" 

Next, set current role to bob and attempt to alter the role joe: 

$ psql -c "SET ROLE bob; ALTER ROLE joe NOLOGIN;" 

Now, as the database administrator (shown here as "postgres"), verify the denials are logged: 

$ sudo su - postgres 
$ cat ${PGDATA?}/pg_log/<latest_log> 
< 2016-03-17 11:28:10.004 EDT bob 56eacd05.cda postgres: >ERROR: permission denied to alter role 
< 2016-03-17 11:28:10.004 EDT bob 56eacd05.cda postgres: >STATEMENT: ALTER ROLE joe; 

If audit logs are not generated when unsuccessful attempts to delete privileges/permissions occur, this is a finding.

Vulnerability Number

V-214095

Documentable

False

Rule Version

PGS9-00-005400

Severity Override Guidance

Note: The following instructions use the PGDATA environment variable. See supplementary content APPENDIX-F for instructions on configuring PGDATA. 

First, as the database administrator (shown here as "postgres"), create the roles joe and bob with LOGIN by running the following SQL: 

$ sudo su - postgres 
$ psql -c "CREATE ROLE joe LOGIN" 
$ psql -c "CREATE ROLE bob LOGIN" 

Next, set current role to bob and attempt to alter the role joe: 

$ psql -c "SET ROLE bob; ALTER ROLE joe NOLOGIN;" 

Now, as the database administrator (shown here as "postgres"), verify the denials are logged: 

$ sudo su - postgres 
$ cat ${PGDATA?}/pg_log/<latest_log> 
< 2016-03-17 11:28:10.004 EDT bob 56eacd05.cda postgres: >ERROR: permission denied to alter role 
< 2016-03-17 11:28:10.004 EDT bob 56eacd05.cda postgres: >STATEMENT: ALTER ROLE joe; 

If audit logs are not generated when unsuccessful attempts to delete privileges/permissions occur, this is a finding.

Check Content Reference

M

Target Key

3994

Comments