Ensure pattern in context.xml is correct

Details

The pattern setting informs Tomcat what information should be logged per application. At a minimum, enough information to uniquely identify a request, what was requested, where the requested originated from, and when the request occurred should be logged. The following will log the request date and time (%t), the requested URL (%U), the remote IP address (%a), the local IP address (%A), the request method (%m), the local port (%p), query string, if present, (%q), and the HTTP status code of the response (%s).

pattern=’%t %U %a %A %m %p %q %s’

Rationale:

The level of logging detail prescribed will assist in identifying correlating security events or incidents.

Solution

Add the following statement into the $CATALINA_BASE/webapps//META-INF/context.xml file if it does not already exist.

className=’org.apache.catalina.valves.AccessLogValve’ directory=’$CATALINA_HOME/logs/’ prefix=’access_log’ fileDateFormat=’yyyy-MM-dd.HH’ suffix=’.log’
pattern=’%h %t %H cookie:%{SESSIONID}c request:%{SESSIONID}r %m %U %s %q %r’
/>

Default Value:

Does not exist by default.

Supportive Information

The following resource is also helpful.

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

References

Source

Updated on July 16, 2022
Was this article helpful?

Related Articles