diff options
author | Jeremy Allison <jra@samba.org> | 2009-10-01 14:32:36 +0200 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2009-10-01 14:32:36 +0200 |
commit | 8a6b90d401e3c8d4d04ade36020bfc5c31c9603e (patch) | |
tree | 78a505a653de9ae0f88d84ea41dbddfaacb86db2 /source3/include | |
parent | 0597b97d159b22314f2b485145df7b82af717f0d (diff) | |
download | samba-8a6b90d401e3c8d4d04ade36020bfc5c31c9603e.tar.gz samba-8a6b90d401e3c8d4d04ade36020bfc5c31c9603e.tar.bz2 samba-8a6b90d401e3c8d4d04ade36020bfc5c31c9603e.zip |
Fix for CVE-2009-2906.
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 'source3/include')
-rw-r--r-- | source3/include/smb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 3c3ced6baf..cee95a9b17 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -727,6 +727,7 @@ struct pending_message_list { struct smb_perfcount_data pcd; uint32_t seqnum; bool encrypted; + bool processed; DATA_BLOB buf; DATA_BLOB private_data; }; |