Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Log4j configuration examples #1483

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

ppkarwasz
Copy link

The current Log4j 2 configuration examples misses some sources of CRLF injection:

In general every part of a log event, with the exclusion of the timestamp, is susceptible to CRLF injection: thread names, logger names, etc. While it is very unlikely that a logger name will contain user data, it is a possibility that should not be excluded.

This PR modifies the Log4j examples in the cheat sheet by:

  1. Adding an example of JSON Template Layout usage. Since this is a structured layout, it prevents CRLF injection out of the box.
  2. Modifying the Pattern Layout example to encode the entire log event, not just the log message. This makes the log events less readable by humans, but guarantees that each log event is on a single line.

ppkarwasz and others added 2 commits September 9, 2024 09:56
Apply suggestions on commit: 3aef8fd

Co-authored-by: Volkan Yazıcı <[email protected]>
Copy link
Collaborator

@mackowski mackowski left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome update. Thank you @ppkarwasz

@vy
Copy link

vy commented Sep 9, 2024

I would strongly avoid

  • Sharing CRLF-fixes – Pattern Layout is not intended to be machine-readable. Trying to make it so by patching CRLF issues creates the impression that "Ah! Okay. Now it is safe to use Pattern Layout in production!", but is not! You can argue that "But we recommend CRLF-fixes only for testing and local development", then again, why would anyone need those fixes for testing and local development?
  • Using rolling file appender as a starter – The rolling operation itself is pretty sophisticated, subject to many corner cases, and users generally configure it wrong; Log4j issue tracker contains several rolling related bugs and questions. For testing and local development purposes, we should encourage Console Appender. Users who has specific needs can consult to the Log4j manual, which contains extensive documentation on appenders.

My 2 cents... 💰

@ppkarwasz
Copy link
Author

@mackowski,

I agree with @vy that the cheat-sheet should not promote the usage of unstructured layouts. No line-based layouts, no CRLF injection!

Obviously this radically changes the content of the sheet.
I can modify the PR to remove examples of line-based layouts in both Log4j Core and Logback (Logback has JsonEncoder). What do you think?

@mackowski
Copy link
Collaborator

@vy and @ppkarwasz you are better experts than me in this subject so yes go ahead!
I will just tag @tghosth because I think they are the original author of this CS.

@tghosth
Copy link
Contributor

tghosth commented Sep 16, 2024

I will just tag @tghosth because I think they are the original author of this CS.

Thanks for the tag but I took this content from the original injection prevention cheatsheet for Java which was brought in by @righettod at this commit: https://github.com/OWASP/CheatSheetSeries/blob/17817a84b9dc945e6b6279a5e9f9b321ad17a4b5/cheatsheets_to_convert/Injection_Prevention_Cheat_Sheet_in_Java.md

You would have to ask @righettod where it came from to begin with :)

@jmanico
Copy link
Member

jmanico commented Sep 20, 2024

I think we are ready for PR's @ppkarwasz - could you also fix the problem in https://github.com/OWASP/CheatSheetSeries/blob/17817a84b9dc945e6b6279a5e9f9b321ad17a4b5/cheatsheets_to_convert/Injection_Prevention_Cheat_Sheet_in_Java.md as well, pretty please?

@ppkarwasz
Copy link
Author

Sure, I'll be travelling for work in the next week, but after my return I'll update this PR to:

  • mention CRLF injection,
  • state that structured logging (JSON, RFC5424) solves that problem at the base.
  • provide only examples of structured logging.
  • I'll double-check our Rfc5424 Layout if CRLF escaping is enabled by default. If it is not, we'll enable it in the next minor release.

@mackowski mackowski marked this pull request as draft October 3, 2024 08:20
@mackowski
Copy link
Collaborator

I converted this to draft since we want to make more changes as part of it

@mackowski
Copy link
Collaborator

hey @ppkarwasz do you have any updates to this?

@ppkarwasz
Copy link
Author

hey @ppkarwasz do you have any updates to this?

Sorry, I'll put it on my TODO list for this weekend.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants