1. Home
  2. Security Hardening
  3. CIS Apache Tomcat 9 L1 V1.1.0
  4. Ensure directory in logging.properties is a secure location – check application log directory is secure

Ensure directory in logging.properties is a secure location – check application log directory is secure

Details

The directory attribute tells Tomcat where to store logs. The directory value should be a secure location with restricted access.

Rationale:

Securing the log location will help ensure the integrity and confidentiality of web application activity records.

Solution

Perform the following:

Add the following properties into your logging.properties file if they do not exist

.org.apache.juli.AsyncFileHandler.directory=
.org.apache.juli.AsyncFileHandler.prefix=

Set the location pointed to by the directory attribute to be owned by tomcat_admin:tomcat with permissions of o-rwx.

# chown tomcat_admin:tomcat
# chmod o-rwx

Default Value:

The directory location is configured to store logs in $CATALINA_BASE/logs.

Supportive Information

The following resource is also helpful.

This security hardening control applies to the following category of controls within NIST 800-53: Access Control.This control applies to the following type of system Unix.

References

Source

Updated on July 16, 2022
Was this article helpful?

Related Articles