- Timestamp:
- Jun 17, 2010, 10:59:42 AM (15 years ago)
- Location:
- branches/samba-3.3.x
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/WHATSNEW.txt
r423 r467 1 ============================== 2 Release Notes for Samba 3.3.13 3 June 16, 2010 4 ============================== 5 6 7 This is a security release in order to address CVE-2010-2063. 8 9 10 o CVE-2010-2063: 11 In Samba 3.3.x and below, a buffer overrun is possible in chain_reply code. 12 13 14 Changes since 3.3.12 15 -------------------- 16 17 18 o Jeremy Allison <jra@samba.org> 19 * BUG 7494: Fix for CVE-2010-2063. 20 21 22 ###################################################################### 23 Reporting bugs & Development Discussion 24 ####################################### 25 26 Please discuss this release on the samba-technical mailing list or by 27 joining the #samba-technical IRC channel on irc.freenode.net. 28 29 If you do report problems then please try to send high quality 30 feedback. If you don't provide vital information to help us track down 31 the problem then you will probably be ignored. All bug reports should 32 be filed under the Samba 3.3 product in the project's Bugzilla 33 database (https://bugzilla.samba.org/). 34 35 36 ====================================================================== 37 == Our Code, Our Bugs, Our Responsibility. 38 == The Samba Team 39 ====================================================================== 40 41 42 Release notes for older releases follow: 43 ---------------------------------------- 44 1 45 ============================== 2 46 Release Notes for Samba 3.3.12 … … 18 62 19 63 20 Changes since 3. 5.021 ------------------- 64 Changes since 3.3.11 65 -------------------- 22 66 23 67 … … 46 90 47 91 48 Release notes for older releases follow: 49 ---------------------------------------- 92 ---------------------------------------------------------------------- 93 50 94 51 95 ============================== -
branches/samba-3.3.x/packaging/RHEL-CTDB/samba.spec
r423 r467 6 6 Packager: Samba Team <samba@samba.org> 7 7 Name: samba 8 Version: 3.3.1 28 Version: 3.3.13 9 9 Release: ctdb.1 10 10 Epoch: 0 -
branches/samba-3.3.x/packaging/RHEL/makerpms.sh
r423 r467 21 21 USERID=`id -u` 22 22 GRPID=`id -g` 23 VERSION='3.3.1 2'23 VERSION='3.3.13' 24 24 REVISION='' 25 25 SPECFILE="samba.spec" -
branches/samba-3.3.x/packaging/RHEL/samba.spec
r423 r467 6 6 Packager: Samba Team <samba@samba.org> 7 7 Name: samba 8 Version: 3.3.1 28 Version: 3.3.13 9 9 Release: 1 10 10 Epoch: 0 -
branches/samba-3.3.x/source/VERSION
r423 r467 26 26 SAMBA_VERSION_MAJOR=3 27 27 SAMBA_VERSION_MINOR=3 28 SAMBA_VERSION_RELEASE=1 228 SAMBA_VERSION_RELEASE=13 29 29 30 30 ######################################################## -
branches/samba-3.3.x/source/smbd/process.c
r338 r467 1646 1646 { 1647 1647 static char *orig_inbuf; 1648 static int orig_size; 1648 1649 1649 1650 /* … … 1680 1681 /* this is the first part of the chain */ 1681 1682 orig_inbuf = inbuf; 1682 } 1683 1683 orig_size = size; 1684 } 1685 1686 /* Validate smb_off2 */ 1687 if ((smb_off2 < smb_wct - 4) || orig_size < (smb_off2 + 4 - smb_wct)) { 1688 exit_server_cleanly("Bad chained packet"); 1689 return; 1690 } 1684 1691 /* 1685 1692 * We need to save the output the caller added to the chain so that we 1686 1693 * can splice it into the final output buffer later. 1687 1694 */ 1695 1696 if (outsize <= smb_wct) { 1697 exit_server_cleanly("Bad chained packet"); 1698 return; 1699 } 1688 1700 1689 1701 caller_outputlen = outsize - smb_wct;
Note:
See TracChangeset
for help on using the changeset viewer.