STIGhubSTIGhub
STIGsRMF ControlsCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • RMF Controls
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated just now
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to EnterpriseDB Postgres Advanced Server (EPAS) Security Technical Implementation Guide

V-259281

CAT II (Medium)

The EDB Postgres Advanced Server must record time stamps in audit records and application data that can be mapped to Coordinated Universal Time (UTC, formerly GMT).

Rule ID

SV-259281r961443_rule

STIG

EnterpriseDB Postgres Advanced Server (EPAS) Security Technical Implementation Guide

Version

V2R1

CCIs

CCI-001890

Discussion

If time stamps are not consistently applied and there is no common time reference, it is difficult to perform forensic analysis. Time stamps generated by the DBMS must include date and time. Time is commonly expressed in Coordinated Universal Time (UTC), a modern continuation of Greenwich Mean Time (GMT), or local time with an offset from UTC.

Check Content

As the "enterprisedb" operating system user, run the following to show the current log_timezone setting:

> psql -d edb -c "SHOW log_timezone"

If anything other than "UTC" is returned, this is a finding.

Fix Text

As the "enterprisedb" operating system user, run the following to set the log_timezone parameter:

> psql edb -c "ALTER SYSTEM SET log_timezone = 'UTC'"

Next, reload the parameter file: 

psql edb -c "SELECT pg_reload_conf()"

Confirm the new value:

psql edb -c "SHOW log_timezone"