STIGQter STIGQter: STIG Summary: Crunchy Data Postgres 16 Security Technical Implementation Guide Version: 1 Release: 3 Benchmark Date: 01 Jul 2026:

PostgreSQL must limit the number of concurrent sessions to an organization-defined number per user for all accounts and/or account types.

DISA Rule

SV-261857r1000976_rule

Vulnerability Number

V-261857

Group Title

SRG-APP-000001-DB-000031

Rule Version

CD16-00-000100

Severity

CAT II

CCI(s)

Weight

10

Fix Recommendation

Note: The following instructions use the PGDATA and PGVER environment variables. Refer to APPENDIX-F for instructions on configuring PGDATA and APPENDIX-H for PGVER.

To configure the maximum amount of connections allowed to the database, as the database administrator (shown here as "postgres") change the following in postgresql.conf (the value 10 is an example; set the value to suit local conditions):

$ sudo su - postgres 
$ vi ${PGDATA?}/postgresql.conf 
max_connections = 10 

Restart the database:

$ sudo systemctl restart postgresql-${PGVER?}

To limit the amount of connections allowed by a specific role, as the database administrator, run the following SQL: 

$ psql -c "ALTER ROLE <rolname> CONNECTION LIMIT 1";

Check Contents

To check the total amount of connections allowed by the database, as the database administrator, run the following SQL:

$ sudo su - postgres
$ psql -c "SHOW max_connections"

If the total amount of connections is greater than documented by an organization, this is a finding.

To check the amount of connections allowed for each role, as the database administrator, run the following SQL:

$ sudo su - postgres
$ psql -c "SELECT rolname, rolconnlimit
FROM pg_roles
WHERE rolname NOT IN (
'pg_database_owner',
'pg_read_all_data',
'pg_write_all_data',
'pg_monitor',
'pg_read_all_settings',
'pg_read_all_stats',
'pg_stat_scan_tables',
'pg_read_server_files',
'pg_write_server_files',
'pg_execute_server_program',
'pg_signal_backend',
'pg_checkpoint',
'pg_use_reserved_connections',
'pg_create_subscription');"

If any roles have more connections configured than documented, this is a finding. A value of "-1" indicates Unlimited and is a finding.

Vulnerability Number

V-261857

Documentable

False

Rule Version

CD16-00-000100

Severity Override Guidance

To check the total amount of connections allowed by the database, as the database administrator, run the following SQL:

$ sudo su - postgres
$ psql -c "SHOW max_connections"

If the total amount of connections is greater than documented by an organization, this is a finding.

To check the amount of connections allowed for each role, as the database administrator, run the following SQL:

$ sudo su - postgres
$ psql -c "SELECT rolname, rolconnlimit
FROM pg_roles
WHERE rolname NOT IN (
'pg_database_owner',
'pg_read_all_data',
'pg_write_all_data',
'pg_monitor',
'pg_read_all_settings',
'pg_read_all_stats',
'pg_stat_scan_tables',
'pg_read_server_files',
'pg_write_server_files',
'pg_execute_server_program',
'pg_signal_backend',
'pg_checkpoint',
'pg_use_reserved_connections',
'pg_create_subscription');"

If any roles have more connections configured than documented, this is a finding. A value of "-1" indicates Unlimited and is a finding.

Check Content Reference

M

Target Key

5598