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

Unused database components, PostgreSQL software, and database objects must be removed.

DISA Rule

SV-214126r508027_rule

Vulnerability Number

V-214126

Group Title

SRG-APP-000141-DB-000091

Rule Version

PGS9-00-008900

Severity

CAT II

CCI(s)

Weight

10

Fix Recommendation

To remove extensions, use the following commands:

$ sudo su - postgres
$ psql -c "DROP EXTENSION <extension_name>"

Note: It is recommended that plpgsql not be removed.

Check Contents

To get a list of all extensions installed, use the following commands: 

$ sudo su - postgres 
$ psql -c "select * from pg_extension where extname != 'plpgsql'" 

If any extensions exist that are not approved, this is a finding.

Vulnerability Number

V-214126

Documentable

False

Rule Version

PGS9-00-008900

Severity Override Guidance

To get a list of all extensions installed, use the following commands: 

$ sudo su - postgres 
$ psql -c "select * from pg_extension where extname != 'plpgsql'" 

If any extensions exist that are not approved, this is a finding.

Check Content Reference

M

Target Key

3994

Comments