Browse Source

crypto: fix version check in hello parser

This is a follow up for 89cb740fc3
archived-io.js-v0.10
Fedor Indutny 11 years ago
parent
commit
4a2c349473
  1. 17
      src/node_crypto_clienthello.cc

17
src/node_crypto_clienthello.cc

@ -85,6 +85,12 @@ bool ClientHelloParser::ParseRecordHeader(const uint8_t* data, size_t avail) {
return true;
}
#ifdef OPENSSL_NO_SSL2
# define NODE_SSL2_VER_CHECK(buf) false
#else
# define NODE_SSL2_VER_CHECK(buf) ((buf)[0] == 0x00 && (buf)[1] == 0x02)
#endif // OPENSSL_NO_SSL2
void ClientHelloParser::ParseHeader(const uint8_t* data, size_t avail) {
ClientHello hello;
@ -95,12 +101,10 @@ void ClientHelloParser::ParseHeader(const uint8_t* data, size_t avail) {
// Skip unsupported frames and gather some data from frame
// Check hello protocol version
if (!(data[body_offset_ + 4] == 0x03 && data[body_offset_ + 5] <= 0x03))
if (!(data[body_offset_ + 4] == 0x03 && data[body_offset_ + 5] <= 0x03) &&
!NODE_SSL2_VER_CHECK(data + body_offset_ + 4)) {
goto fail;
#ifndef OPENSSL_NO_SSL2
if (!(data[body_offset_ + 4] == 0x00 && data[body_offset_ + 5] == 0x02))
goto fail;
#endif
}
if (data[body_offset_] == kClientHello) {
if (state_ == kTLSHeader) {
@ -141,6 +145,9 @@ void ClientHelloParser::ParseHeader(const uint8_t* data, size_t avail) {
}
#undef NODE_SSL2_VER_CHECK
void ClientHelloParser::ParseExtension(ClientHelloParser::ExtensionType type,
const uint8_t* data,
size_t len) {

Loading…
Cancel
Save