1. Home
  2. Security Hardening
  3. CIS Apache Tomcat 8 L1 V1.1.0 Middleware
  4. Restrict access to Tomcat web application directory

Restrict access to Tomcat web application directory

Details

The Tomcat $CATALINA_HOME/webapps directory contains web applications that are deployed through Tomcat. It is recommended that the ownership of this directory be tomcat_admin:tomcat. It is also recommended that the permission on $CATALINA_HOME/webapps deny read, write, and execute for the world (o-rwx) and deny write access to the group (g-w).

Rationale:

Restricting access to these directories will prevent local users from maliciously or inadvertently affecting the integrity of web applications.

Solution

Perform the following to restrict access to Tomcat webapps directory:

Set the ownership of the $CATALINA_HOME/webapps to tomcat_admin:tomcat.

# chown tomcat_admin:tomcat $CATALINA_HOME/webapps

Remove read, write, and execute permissions for the world.

# chmod g-w,o-rwx $CATALINA_HOME/webapps

Default Value:

The default permissions of the top-level directories are 770.

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