[
https://issues.apache.org/jira/browse/THRIFT-4924?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16929770#comment-16929770
]
Jens Geyer commented on THRIFT-4924:
------------------------------------
Sure, please do!
You don't have to ask for permission to contribute. If everything else is
clear, just start coding and send a PR. We will look at it and merge or discuss
or whatever else makes sense.
> An information leakage from TSocket
> -----------------------------------
>
> Key: THRIFT-4924
> URL: https://issues.apache.org/jira/browse/THRIFT-4924
> Project: Thrift
> Issue Type: Bug
> Components: Java - Library
> Affects Versions: 0.11.0, 0.12.0
> Environment: Ubuntu 16.04.3 LTS
> Open JDK version "1.8.0_191" build 25.191-b12
> Reporter: xiaoqin.fu
> Priority: Major
>
> In org.apache.thrift.transport.TSocket,
> public void close() {
> ......
> if (socket_ != null) {
> try {
> socket_.close();
> } catch (IOException iox) {
> LOGGER.warn("Could not close socket.", iox);
> }
> socket_ = null;
> }
> }
> Sensitive information about socket input stream or output stream may be
> leaked.
> The LOGGER.isWarnEnabled() conditional statement should be added to the
> method close() and others such as TSocket(Socket socket) and setTimeout(int
> timeout):
> public void close() {
> ......
> if (socket_ != null) {
> try {
> socket_.close();
> } catch (IOException iox) {
> if (LOGGER.isWarnEnabled())
> LOGGER.warn("Could not close socket.", iox);
> }
> socket_ = null;
> }
> }
--
This message was sent by Atlassian Jira
(v8.3.2#803003)