From 0e51f10a96acb5389a1326b4a85646b1cbac705d Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 30 Sep 2009 14:24:50 +0200 Subject: 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. (cherry picked from commit e2dff319a6d5c0c54acdba3d4fec05477ca60f11) --- source/include/smb.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/include/smb.h') 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; }; -- cgit