From 8206dba75c7fc1a5274b3a9f8ddc4e77cf34669d Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Wed, 4 Jan 2012 15:38:54 +0000 Subject: [PATCH] Clear bytes used for block padding of SSL 3.0 records. (CVE-2011-4576) [include source patch this time!] --- ssl/s3_enc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ssl/s3_enc.c b/ssl/s3_enc.c index 58386e1ba0..b14597076d 100644 --- a/ssl/s3_enc.c +++ b/ssl/s3_enc.c @@ -511,6 +511,9 @@ int ssl3_enc(SSL *s, int send) /* we need to add 'i-1' padding bytes */ l+=i; + /* the last of these zero bytes will be overwritten + * with the padding length. */ + memset(&rec->input[rec->length], 0, i); rec->length+=i; rec->input[l-1]=(i-1); } -- 2.25.1