]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
tls: improve versions extension logic
authorVictor Julien <vjulien@oisf.net>
Wed, 7 Sep 2022 05:31:38 +0000 (07:31 +0200)
committerVictor Julien <vjulien@oisf.net>
Wed, 21 Sep 2022 04:43:48 +0000 (06:43 +0200)
Skip over unusable versions like GREASE.

src/app-layer-ssl.c

index 82069a0a521674572c20864a189ea964220ae4f3..b79d9b185000b61cc81c175f37c3002eddf7ddb0 100644 (file)
@@ -1016,8 +1016,17 @@ static inline int TLSDecodeHSHelloExtensionSupportedVersions(SSLState *ssl_state
         if (!(HAS_SPACE(supported_ver_len)))
             goto invalid_length;
 
-        /* Use the first (and prefered) version as client version */
-        ssl_state->curr_connp->version = (uint16_t)(*input << 8) | *(input + 1);
+        /* Use the first (and prefered) valid version as client version,
+         * skip over GREASE and other possible noise. */
+        uint16_t i = 0;
+        while (i < (uint16_t)supported_ver_len) {
+            uint16_t ver = (uint16_t)(input[i] << 8) | input[i + 1];
+            if (TLSVersionValid(ver)) {
+                ssl_state->curr_connp->version = ver;
+                break;
+            }
+            i += 2;
+        }
 
         /* Set a flag to indicate that we have seen this extension */
         ssl_state->flags |= SSL_AL_FLAG_CH_VERSION_EXTENSION;