[
https://issues.apache.org/jira/browse/LOG4J2-2054?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16180978#comment-16180978
]
ASF subversion and git services commented on LOG4J2-2054:
---------------------------------------------------------
Commit 7e83dfb0c26bcbb2dcd1677f90e36f6ecc4f8c0c in logging-log4j2's branch
refs/heads/master from rpopma
[ https://git-wip-us.apache.org/repos/asf?p=logging-log4j2.git;h=7e83dfb ]
LOG4J2-2054 prevent NPE when environment variable is not defined, allowing for
null passwords
> Provide ways to configure SSL that avoid plain-text passwords in the log4j
> configuration
> ----------------------------------------------------------------------------------------
>
> Key: LOG4J2-2054
> URL: https://issues.apache.org/jira/browse/LOG4J2-2054
> Project: Log4j 2
> Issue Type: Improvement
> Components: Appenders
> Affects Versions: 2.9.1
> Reporter: Remko Popma
> Assignee: Remko Popma
> Fix For: 2.10.0
>
>
> Following up on LOG4J2-1896, currently SecureSocketAppender can only be
> configured by specifying the passwords to the trust store and the key store
> in plain text in the log4j 2 configuration file.
> Provide alternative configurations that obtain the password from different
> sources, for example:
> * system environment variable
> * file
> Example configuration:
> {noformat}
> <Appenders>
> <Socket name="socket" host="localhost"
> port="${sys:SecureSocketAppenderSocketOptionsTest.port}" protocol="SSL"
> ignoreExceptions="false">
> <JsonLayout properties="true"/>
> <Ssl>
> <KeyStore
> location="src/test/resources/org/apache/logging/log4j/core/net/ssl/client.log4j2-keystore.jks"
> passwordEnvironmentVariable="KEYSTORE_PASSWORD" type="JKS" />
> <TrustStore
> location="src/test/resources/org/apache/logging/log4j/core/net/ssl/truststore.jks"
> passwordFile="${sys:user.home}/truststore.pwd" type="JKS" />
> </Ssl>
> </Socket>
> </Appenders>
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)