Skip to content

The EDB Postgres Advanced Server must generate audit records when successful/unsuccessful logons, connections, or connection attempts occur.

An XCCDF Rule

Description

For completeness of forensic analysis, it is necessary to track who/what (a user or other principal) logs on to the DBMS. It is also necessary to track failed attempts to log on to the DBMS. While positive identification may not be possible in a case of failed authentication, as much information as possible about the incident must be captured. Satisfies: SRG-APP-000503-DB-000350,SRG-APP-000503-DB-000351

ID
SV-224232r879874_rule
Severity
Medium
References
Updated

Remediation Templates

A Manual Procedure

Execute the following SQL as enterprisedb:

 ALTER SYSTEM SET edb_audit_connect = 'all';
 SELECT pg_reload_conf();

or