OpenSSL Security Advisory: TLS heartbeat read overrun
1–10 of 88 posts
Re: OpenSSL Security Advisory: TLS heartbeat read overrun
#2Re: OpenSSL Security Advisory: TLS heartbeat read overrun
#3Re: OpenSSL Security Advisory: TLS heartbeat read overrun
#4 DTLS is designed to secure traffic running on top of unreliable
transport protocols. Usually such protocols have no session
management. The only mechanism available at the DTLS layer to figure
out if a peer is still alive is performing a costly renegotiation.
If the application uses unidirectional traffic there is no other way.
TLS is based on reliable protocols but there is not necessarily a
feature available to keep the connection alive without continuous
data transfer.
The Heartbeat Extension as described in this document overcomes these
limitations. The user can use the new HeartbeatRequest message which
has to be answered by the peer with a HeartbeartResponse immediately.
https://tools.ietf.org/html/draft-ietf-tls-dtls-heartbeat-01Edit: here is the commit patching the bug https://github.com/openssl/openssl/commit/7e840163c06c7692b7...
Re: OpenSSL Security Advisory: TLS heartbeat read overrun
#5[0] http://tools.ietf.org/html/draft-ietf-tls-dtls-heartbeat-04
Re: OpenSSL Security Advisory: TLS heartbeat read overrun
#6"Don't roll your own parsers" should really be up there with "Don't roll your own crypto". This advisory is scant on details, but this extension protocol[0] neither looks complex nor beyond mechanical code generation to me. Just simple enough to be dangerous. And it's pretty new, so this must be recently authored vulnerable code. [0] http://tools.ietf.org/html/draft-ietf-tls-dtls-heartbeat-04
Re: OpenSSL Security Advisory: TLS heartbeat read overrun
#7Re: OpenSSL Security Advisory: TLS heartbeat read overrun
#8Re: OpenSSL Security Advisory: TLS heartbeat read overrun
#9"Don't roll your own parsers" should really be up there with "Don't roll your own crypto". This advisory is scant on details, but this extension protocol[0] neither looks complex nor beyond mechanical code generation to me. Just simple enough to be dangerous. And it's pretty new, so this must be recently authored vulnerable code. [0] http://tools.ietf.org/html/draft-ietf-tls-dtls-heartbeat-04
Looks like a good use case for Hammer: https://github.com/UpstandingHackers/hammer
Re: OpenSSL Security Advisory: TLS heartbeat read overrun
#10 $ echo -e "quit\n" | openssl s_client -connect google.com:443 -tlsextdebug 2>&1| grep 'TLS server extension "heartbeat" (id=15), len=1'
TLS server extension "heartbeat" (id=15), len=1
This doesn't tell you that the server uses OpenSSL, or that it is vulnerable, simply that it supports the extension.