Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
c0c1eaa7
Commit
c0c1eaa7
authored
Dec 17, 2015
by
Guus der Kinderen
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #466 from guusdk/OF-1009
OF-1009: Ignore the exception indicating an error
parents
a9815e8a
de8b98ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
TLSStreamHandler.java
src/java/org/jivesoftware/openfire/net/TLSStreamHandler.java
+11
-1
No files found.
src/java/org/jivesoftware/openfire/net/TLSStreamHandler.java
View file @
c0c1eaa7
...
...
@@ -28,6 +28,7 @@ import org.jivesoftware.util.JiveGlobals;
import
javax.net.ssl.SSLEngine
;
import
javax.net.ssl.SSLEngineResult
;
import
javax.net.ssl.SSLEngineResult.HandshakeStatus
;
import
javax.net.ssl.SSLHandshakeException
;
import
javax.net.ssl.SSLSession
;
import
java.io.IOException
;
import
java.io.InputStream
;
...
...
@@ -219,7 +220,16 @@ public class TLSStreamHandler {
case
NEED_UNWRAP:
if
(
rbc
.
read
(
incomingNetBB
)
==
-
1
)
{
tlsEngine
.
closeInbound
();
try
{
tlsEngine
.
closeInbound
();
}
catch
(
javax
.
net
.
ssl
.
SSLException
ex
)
{
// OF-1009 Process these as a 'normal' handshake rejection - it's the peer closing the connection abruptly.
if
(
"Inbound closed before receiving peer's close_notify: possible truncation attack?"
.
equals
(
ex
.
getMessage
()
)
)
{
throw
new
SSLHandshakeException
(
"The peer closed the connection while performing a TLS handshake."
);
}
throw
ex
;
}
return
initialHSComplete
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment