diff options
author | Jeremy Allison <jra@samba.org> | 2009-09-30 14:24:50 +0200 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2009-09-30 14:24:50 +0200 |
commit | e2dff319a6d5c0c54acdba3d4fec05477ca60f11 (patch) | |
tree | 68be4e48ae80b2f79bcc9e785677d7bf3a8ea1a7 /source/include/smb.h | |
parent | 802d964da98628b1d243fdd766cf0c86ae287713 (diff) | |
download | samba-v3-2-stable.tar.gz samba-v3-2-stable.tar.xz samba-v3-2-stable.zip |
Fix for CVE-2009-2906.samba-3.2.15v3-2-stable
Summary:
Specially crafted SMB requests on
authenticated SMB connections can send smbd
into a 100% CPU loop, causing a DoS on the
Samba server.
Diffstat (limited to 'source/include/smb.h')
-rw-r--r-- | source/include/smb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/include/smb.h b/source/include/smb.h index dc346d8ad94..960984f19e8 100644 --- a/source/include/smb.h +++ b/source/include/smb.h @@ -759,6 +759,7 @@ struct pending_message_list { struct timeval request_time; /* When was this first issued? */ struct timeval end_time; /* When does this time out? */ bool encrypted; + bool processed; DATA_BLOB buf; DATA_BLOB private_data; }; |