From dff54f716bdd76e3d167dc96bba6e168ef58cadd Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 30 Sep 2009 14:21:56 +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. --- 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 7484efd1925..e512add4be2 100644 --- a/source/include/smb.h +++ b/source/include/smb.h @@ -759,6 +759,7 @@ struct pending_message_list { struct pending_message_list *next, *prev; struct timeval request_time; /* When was this first issued? */ struct timeval end_time; /* When does this time out? */ + bool processed; DATA_BLOB buf; DATA_BLOB private_data; }; -- cgit