projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f090f7
)
Fix a crash in the asn1parse command
author
Bernd Edlinger
<bernd.edlinger@hotmail.de>
Sat, 31 Mar 2018 19:09:32 +0000
(21:09 +0200)
committer
Bernd Edlinger
<bernd.edlinger@hotmail.de>
Tue, 3 Apr 2018 14:02:16 +0000
(16:02 +0200)
Thanks to Sem Voigtländer for reporting this issue.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/5826)
apps/asn1pars.c
patch
|
blob
|
history
diff --git
a/apps/asn1pars.c
b/apps/asn1pars.c
index a391e0a6d716b1f2965c68fba7e8fbb5581d8cb1..89069439a87662cee6f9165f3acff9f9656d2671 100644
(file)
--- 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;