From 752837e0664e990b5edf6f0b69e1b4612efadce0 Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Sat, 31 Mar 2018 21:09:32 +0200 Subject: [PATCH] Fix a crash in the asn1parse command MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Thanks to Sem Voigtländer for reporting this issue. Reviewed-by: Rich Salz Reviewed-by: Matthias St. Pierre (Merged from https://github.com/openssl/openssl/pull/5826) --- apps/asn1pars.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/asn1pars.c b/apps/asn1pars.c index a391e0a6d7..89069439a8 100644 --- a/apps/asn1pars.c +++ b/apps/asn1pars.c @@ -226,7 +226,7 @@ int asn1parse_main(int argc, char **argv) ASN1_TYPE *atmp; int typ; j = atoi(sk_OPENSSL_STRING_value(osk, i)); - if (j == 0) { + if (j <= 0 || j >= tmplen) { BIO_printf(bio_err, "'%s' is an invalid number\n", sk_OPENSSL_STRING_value(osk, i)); continue; -- 2.25.1