UCF STIG Viewer Logo

The EDB Postgres Advanced Server must be configured to prohibit or restrict the use of organization-defined functions, ports, protocols, and/or services, as defined in the PPSM CAL and vulnerability assessments.


Overview

Finding ID Version Rule ID IA Controls Severity
V-213595 PPS9-00-004100 SV-213595r508024_rule Medium
Description
In order to prevent unauthorized connection of devices, unauthorized transfer of information, or unauthorized tunneling (i.e., embedding of data types within data types), organizations must disable or restrict unused or unnecessary physical and logical ports/protocols/services on information systems. Applications are capable of providing a wide variety of functions and services. Some of the functions and services provided by default may not be necessary to support essential organizational operations. Additionally, it is sometimes convenient to provide multiple services from a single component (e.g., email and web services); however, doing so increases risk over limiting the services provided by any one component. To support the requirements and principles of least functionality, the application must support the organizational requirements providing only essential capabilities and limiting the use of ports, protocols, and/or services to only those required, authorized, and approved to conduct official business or to address authorized quality of life issues. Database Management Systems using ports, protocols, and services deemed unsafe are open to attack through those ports, protocols, and services. This can allow unauthorized access to the database and through the database to other components of the information system.
STIG Date
EDB Postgres Advanced Server Security Technical Implementation Guide 2020-09-23

Details

Check Text ( C-14817r290097_chk )
Execute the following SQL as enterprisedb:

SHOW port;
SHOW listen_addresses;

If the port or addresses are not approved, this is a finding.
Fix Text (F-14815r290098_fix)
Execute the following SQL as enterprisedb:

ALTER SYSTEM SET port = ;
ALTER SYSTEM SET listen_addresses = ;

Execute the following operating system command as root:

systemctl restart ppas-9.5.service