summaryrefslogtreecommitdiffstats
path: root/crypto/openssl/apps/speed.c
diff options
context:
space:
mode:
authorsimon <simon@FreeBSD.org>2009-01-07 20:17:55 +0000
committersimon <simon@FreeBSD.org>2009-01-07 20:17:55 +0000
commitabe6016909259942e4406e3f1ad00457ed92ad7b (patch)
tree35047b128f79f0cc0e19f739b1989b690c953007 /crypto/openssl/apps/speed.c
parentef24bb1a20fff74f45c2d0daf8a10d11d47251a4 (diff)
downloadFreeBSD-src-abe6016909259942e4406e3f1ad00457ed92ad7b.zip
FreeBSD-src-abe6016909259942e4406e3f1ad00457ed92ad7b.tar.gz
Prevent cross-site forgery attacks on lukemftpd(8) due to splitting
long commands into multiple requests. [09:01] Fix incorrect OpenSSL checks for malformed signatures due to invalid check of return value from EVP_VerifyFinal(), DSA_verify, and DSA_do_verify. [09:02] Security: FreeBSD-SA-09:01.lukemftpd Security: FreeBSD-SA-09:02.openssl Obtained from: NetBSD [SA-09:01] Obtained from: OpenSSL Project [SA-09:02] Approved by: so (simon)
Diffstat (limited to 'crypto/openssl/apps/speed.c')
-rw-r--r--crypto/openssl/apps/speed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/openssl/apps/speed.c b/crypto/openssl/apps/speed.c
index 7858aee..4af171d 100644
--- a/crypto/openssl/apps/speed.c
+++ b/crypto/openssl/apps/speed.c
@@ -2038,7 +2038,7 @@ int MAIN(int argc, char **argv)
{
ret=RSA_verify(NID_md5_sha1, buf,36, buf2,
rsa_num, rsa_key[j]);
- if (ret == 0)
+ if (ret <= 0)
{
BIO_printf(bio_err,
"RSA verify failure\n");
OpenPOWER on IntegriCloud