You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
--- a/src/internal.c
|
|
|
|
+++ b/src/internal.c
|
|
|
|
@@ -6037,6 +6037,10 @@ int ProcessReply(CYASSL* ssl)
|
|
|
|
b1 =
|
|
|
|
ssl->buffers.inputBuffer.buffer[ssl->buffers.inputBuffer.idx++];
|
|
|
|
ssl->curSize = (word16)(((b0 & 0x7f) << 8) | b1);
|
|
|
|
+
|
|
|
|
+ /* does not appear to a be a SSLv2 client hello */
|
|
|
|
+ if ( ssl->buffers.inputBuffer.buffer[ssl->buffers.inputBuffer.idx] != 1 )
|
|
|
|
+ return UNKNOWN_HANDSHAKE_TYPE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ssl->options.processReply = getRecordLayerHeader;
|