diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-01-04 14:47:11 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-01-04 15:24:57 +0100 |
commit | e08b66b7cb4bc3f7ad56d081f0357ec1d39aa4ec (patch) | |
tree | ed0fb2ca651a4b6f67b8e081626354fd80189c89 /tests/cert-tests | |
parent | 94fcf1645ea17223237aaf8d19132e004afddc1a (diff) | |
download | gnutls-e08b66b7cb4bc3f7ad56d081f0357ec1d39aa4ec.tar.gz |
tests: added test case with invalid openpgp cert
This triggers a memory error. Issue found using oss-fuzz:
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=346
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'tests/cert-tests')
-rw-r--r-- | tests/cert-tests/Makefile.am | 2 | ||||
-rw-r--r-- | tests/cert-tests/data/openpgp-invalid2.pub | bin | 0 -> 187 bytes | |||
-rwxr-xr-x | tests/cert-tests/openpgp-cert-parser | 6 |
3 files changed, 7 insertions, 1 deletions
diff --git a/tests/cert-tests/Makefile.am b/tests/cert-tests/Makefile.am index 2c14da68fd..51a4e5c63d 100644 --- a/tests/cert-tests/Makefile.am +++ b/tests/cert-tests/Makefile.am @@ -62,7 +62,7 @@ EXTRA_DIST = data/ca-no-pathlen.pem data/no-ca-or-pathlen.pem data/aki-cert.pem data/code-signing-ca.pem data/code-signing-cert.pem data/multi-value-dn.pem \ data/pkcs7-cat-ca.pem data/pkcs7-cat.p7 data/openssl.p7b data/openssl.p7b.out \ data/openssl-keyid.p7b data/openssl-keyid.p7b.out data/openssl.p12 \ - data/openpgp-invalid1.pub + data/openpgp-invalid1.pub data/openpgp-invalid2.pub dist_check_SCRIPTS = pathlen aki certtool invalid-sig email \ pkcs7 pkcs7-broken-sigs privkey-import name-constraints certtool-long-cn crl provable-privkey \ diff --git a/tests/cert-tests/data/openpgp-invalid2.pub b/tests/cert-tests/data/openpgp-invalid2.pub Binary files differnew file mode 100644 index 0000000000..93d9df5ce5 --- /dev/null +++ b/tests/cert-tests/data/openpgp-invalid2.pub diff --git a/tests/cert-tests/openpgp-cert-parser b/tests/cert-tests/openpgp-cert-parser index eb3cb1ac98..c38789441c 100755 --- a/tests/cert-tests/openpgp-cert-parser +++ b/tests/cert-tests/openpgp-cert-parser @@ -64,4 +64,10 @@ if test $rc != 1;then fail "Parsing should have errored" fi +${VALGRIND} "${CERTTOOL}" --inraw --pgp-certificate-info --infile "${srcdir}/data/openpgp-invalid2.pub" 2>&1 +rc=$? +if test $rc != 1;then + fail "Parsing should have errored" +fi + exit ${RETCODE:-0} |