Changeset 581
- Timestamp:
- Jun 28, 2011, 9:27:20 AM (14 years ago)
- Location:
- vendor/current
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified vendor/current/WHATSNEW.txt ¶
r478 r581 1 ============================= 2 Release Notes for Samba 3.5.5 3 September 14, 2010 4 ============================= 5 6 7 This is a security release in order to address CVE-2010-3069. 8 9 10 o CVE-2010-3069: 11 All current released versions of Samba are vulnerable to 12 a buffer overrun vulnerability. The sid_parse() function 13 (and related dom_sid_parse() function in the source4 code) 14 do not correctly check their input lengths when reading a 15 binary representation of a Windows SID (Security ID). This 16 allows a malicious client to send a sid that can overflow 17 the stack variable that is being used to store the SID in the 18 Samba smbd server. 19 20 21 Changes since 3.5.4 22 -------------------- 23 24 25 o Jeremy Allison <jra@samba.org> 26 * BUG 7669: Fix for CVE-2010-3069. 27 28 29 o Andrew Bartlett <abartlet@samba.org> 30 * BUG 7669: Fix for CVE-2010-3069. 31 32 33 ###################################################################### 34 Reporting bugs & Development Discussion 35 ####################################### 36 37 Please discuss this release on the samba-technical mailing list or by 38 joining the #samba-technical IRC channel on irc.freenode.net. 39 40 If you do report problems then please try to send high quality 41 feedback. If you don't provide vital information to help us track down 42 the problem then you will probably be ignored. All bug reports should 43 be filed under the Samba 3.5 product in the project's Bugzilla 44 database (https://bugzilla.samba.org/). 45 46 47 ====================================================================== 48 == Our Code, Our Bugs, Our Responsibility. 49 == The Samba Team 50 ====================================================================== 51 52 53 Release notes for older releases follow: 54 ---------------------------------------- 55 1 56 ============================= 2 57 Release Notes for Samba 3.5.4 … … 89 144 90 145 91 Release notes for older releases follow: 92 ---------------------------------------- 146 ---------------------------------------------------------------------- 147 93 148 94 149 ============================= -
TabularUnified vendor/current/docs-xml/smbdotconf/protocol/aclmapfullcontrol.xml ¶
r414 r581 7 7 <para> 8 8 This boolean parameter controls whether <citerefentry><refentrytitle>smbd</refentrytitle> 9 <manvolnum>8</manvolnum></citerefentry> maps a POSIX ACE entry of "rwx" (read/write/execute), the maximum9 <manvolnum>8</manvolnum></citerefentry> maps a POSIX ACE entry of "rwx" (read/write/execute), the maximum 10 10 allowed POSIX permission set, into a Windows ACL of "FULL CONTROL". If this parameter is set to true any POSIX 11 11 ACE entry of "rwx" will be returned in a Windows ACL as "FULL CONTROL", is this parameter is set to false any -
TabularUnified vendor/current/libcli/security/dom_sid.c ¶
r414 r581 116 116 for (i=0;sidstr[i];i++) { 117 117 if (sidstr[i] == '-') num_sub_auths++; 118 } 119 120 if (num_sub_auths > MAXSUBAUTHS) { 121 return false; 118 122 } 119 123 -
TabularUnified vendor/current/libcli/security/dom_sid.h ¶
r414 r581 41 41 char *dom_sid_string(TALLOC_CTX *mem_ctx, const struct dom_sid *sid); 42 42 43 #ifndef MAXSUBAUTHS 44 #define MAXSUBAUTHS 15 /* max sub authorities in a SID */ 45 #endif 46 43 47 #endif /*_DOM_SID_H_*/ 44 48 -
TabularUnified vendor/current/packaging/RHEL-CTDB/samba.spec ¶
r478 r581 6 6 Packager: Samba Team <samba@samba.org> 7 7 Name: samba 8 Version: 3.5. 48 Version: 3.5.5 9 9 Release: 1GITHASH 10 10 Epoch: 0 -
TabularUnified vendor/current/packaging/RHEL/makerpms.sh ¶
r478 r581 21 21 USERID=`id -u` 22 22 GRPID=`id -g` 23 VERSION='3.5. 4'23 VERSION='3.5.5' 24 24 REVISION='' 25 25 SPECFILE="samba.spec" -
TabularUnified vendor/current/packaging/RHEL/samba.spec ¶
r478 r581 6 6 Packager: Samba Team <samba@samba.org> 7 7 Name: samba 8 Version: 3.5. 48 Version: 3.5.5 9 9 Release: 1 10 10 Epoch: 0 -
TabularUnified vendor/current/source3/VERSION ¶
r478 r581 26 26 SAMBA_VERSION_MAJOR=3 27 27 SAMBA_VERSION_MINOR=5 28 SAMBA_VERSION_RELEASE= 428 SAMBA_VERSION_RELEASE=5 29 29 30 30 ######################################################## -
TabularUnified vendor/current/source3/include/version.h ¶
r478 r581 2 2 #define SAMBA_VERSION_MAJOR 3 3 3 #define SAMBA_VERSION_MINOR 5 4 #define SAMBA_VERSION_RELEASE 45 #define SAMBA_VERSION_OFFICIAL_STRING "3.5. 4"4 #define SAMBA_VERSION_RELEASE 5 5 #define SAMBA_VERSION_OFFICIAL_STRING "3.5.5" 6 6 #ifdef SAMBA_VERSION_VENDOR_FUNCTION 7 7 # define SAMBA_VERSION_STRING SAMBA_VERSION_VENDOR_FUNCTION -
TabularUnified vendor/current/source3/lib/util_sid.c ¶
r414 r581 409 409 sid->sid_rev_num = CVAL(inbuf, 0); 410 410 sid->num_auths = CVAL(inbuf, 1); 411 if (sid->num_auths > MAXSUBAUTHS) { 412 return false; 413 } 411 414 memcpy(sid->id_auth, inbuf+2, 6); 412 415 if (len < 8 + sid->num_auths*4) -
TabularUnified vendor/current/source3/libads/ldap.c ¶
r427 r581 2142 2142 DOM_SID sid; 2143 2143 fstring tmp; 2144 sid_parse(values[i]->bv_val, values[i]->bv_len, &sid); 2144 if (!sid_parse(values[i]->bv_val, values[i]->bv_len, &sid)) { 2145 continue; 2146 } 2145 2147 printf("%s: %s\n", field, sid_to_fstring(tmp, &sid)); 2146 2148 } -
TabularUnified vendor/current/source3/libsmb/cliquota.c ¶
r414 r581 112 112 #endif /* LARGE_SMB_OFF_T */ 113 113 114 sid_parse(rdata+40,sid_len,&qt.sid); 114 if (!sid_parse(rdata+40,sid_len,&qt.sid)) { 115 return false; 116 } 115 117 116 118 qt.qtype = SMB_USER_QUOTA_TYPE; -
TabularUnified vendor/current/source3/smbd/nttrans.c ¶
r414 r581 2162 2162 /*unknown = IVAL(pdata,0);*/ 2163 2163 2164 sid_parse(pdata+4,sid_len,&sid); 2164 if (!sid_parse(pdata+4,sid_len,&sid)) { 2165 reply_nterror(req, NT_STATUS_INVALID_PARAMETER); 2166 return; 2167 } 2168 2165 2169 DEBUGADD(10, ("for SID: %s\n", sid_string_dbg(&sid))); 2166 2170 … … 2418 2422 } 2419 2423 2420 sid_parse(pdata+8,sid_len,&sid); 2424 if (!sid_parse(pdata+8,sid_len,&sid)) { 2425 reply_nterror(req, NT_STATUS_INVALID_PARAMETER); 2426 return; 2427 } 2421 2428 2422 2429 if (vfs_get_ntquota(fsp, SMB_USER_QUOTA_TYPE, &sid, &qt)!=0) { … … 2599 2606 #endif /* LARGE_SMB_OFF_T */ 2600 2607 2601 sid_parse(pdata+40,sid_len,&sid); 2608 if (!sid_parse(pdata+40,sid_len,&sid)) { 2609 reply_nterror(req, NT_STATUS_INVALID_PARAMETER); 2610 return; 2611 } 2612 2602 2613 DEBUGADD(8,("SID: %s\n", sid_string_dbg(&sid))); 2603 2614
Note:
See TracChangeset
for help on using the changeset viewer.