diff options
author | Jeremy Allison <jra@samba.org> | 2009-09-30 14:24:50 +0200 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2009-10-01 14:26:00 +0200 |
commit | 0e51f10a96acb5389a1326b4a85646b1cbac705d (patch) | |
tree | 25e45a88da07bb05d03b54898fc7f0c06c0d8737 /source/include | |
parent | 4e25072de62595b491acf3f5003b309f8b22a78b (diff) | |
download | samba-v3-2-test.tar.gz samba-v3-2-test.tar.xz samba-v3-2-test.zip |
Fix for CVE-2009-2906.v3-2-test
Summary:
Specially crafted SMB requests on
authenticated SMB connections can send smbd
into a 100% CPU loop, causing a DoS on the
Samba server.
(cherry picked from commit e2dff319a6d5c0c54acdba3d4fec05477ca60f11)
Diffstat (limited to 'source/include')
-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; }; |