NEWS[4.18.9]: Samba 4.18.9 Available for Download
authorJule Anger <janger@samba.org>
Wed, 29 Nov 2023 14:36:00 +0000 (15:36 +0100)
committerJule Anger <janger@samba.org>
Wed, 29 Nov 2023 14:36:59 +0000 (15:36 +0100)
Signed-off-by: Jule Anger <janger@samba.org>
history/header_history.html
history/samba-4.18.9.html [new file with mode: 0644]
posted_news/20231129-143633.4.18.9.body.html [new file with mode: 0644]
posted_news/20231129-143633.4.18.9.headline.html [new file with mode: 0644]

index 05d409deb7e3e47d606acf3b3efdb16fee4accb0..257e16c6095fc6c46561c5c5a6c7006f08203b49 100755 (executable)
@@ -13,6 +13,7 @@
                        <li><a href="samba-4.19.2.html">samba-4.19.2</a></li>
                        <li><a href="samba-4.19.1.html">samba-4.19.1</a></li>
                        <li><a href="samba-4.19.0.html">samba-4.19.0</a></li>
+                       <li><a href="samba-4.18.9.html">samba-4.18.9</a></li>
                        <li><a href="samba-4.18.8.html">samba-4.18.8</a></li>
                        <li><a href="samba-4.18.7.html">samba-4.18.7</a></li>
                        <li><a href="samba-4.18.6.html">samba-4.18.6</a></li>
diff --git a/history/samba-4.18.9.html b/history/samba-4.18.9.html
new file mode 100644 (file)
index 0000000..239288b
--- /dev/null
@@ -0,0 +1,120 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<title>Samba 4.18.9 - Release Notes</title>
+</head>
+<body>
+<H2>Samba 4.18.9 Available for Download</H2>
+<p>
+<a href="https://download.samba.org/pub/samba/stable/samba-4.18.9.tar.gz">Samba 4.18.9 (gzipped)</a><br>
+<a href="https://download.samba.org/pub/samba/stable/samba-4.18.9.tar.asc">Signature</a>
+</p>
+<p>
+<a href="https://download.samba.org/pub/samba/patches/samba-4.18.8-4.18.9.diffs.gz">Patch (gzipped) against Samba 4.18.8</a><br>
+<a href="https://download.samba.org/pub/samba/patches/samba-4.18.8-4.18.9.diffs.asc">Signature</a>
+</p>
+<p>
+<pre>
+                   ==============================
+                   Release Notes for Samba 4.18.9
+                         November 29, 2023
+                   ==============================
+
+
+This is the latest stable release of the Samba 4.18 release series.
+It contains the security-relevant bugfix CVE-2018-14628:
+
+    Wrong ntSecurityDescriptor values for &quot;CN=Deleted Objects&quot;
+    allow read of object tombstones over LDAP
+    (Administrator action required!)
+    https://www.samba.org/samba/security/CVE-2018-14628.html
+
+
+Description of CVE-2018-14628
+-----------------------------
+
+All versions of Samba from 4.0.0 onwards are vulnerable to an
+information leak (compared with the established behaviour of
+Microsoft&apos;s Active Directory) when Samba is an Active Directory Domain
+Controller.
+
+When a domain was provisioned with an unpatched Samba version,
+the ntSecurityDescriptor is simply inherited from Domain/Partition-HEAD-Object
+instead of being very strict (as on a Windows provisioned domain).
+
+This means also non privileged users can use the
+LDAP_SERVER_SHOW_DELETED_OID control in order to view,
+the names and preserved attributes of deleted objects.
+
+No information that was hidden before the deletion is visible, but in
+with the correct ntSecurityDescriptor value in place the whole object
+is also not visible without administrative rights.
+
+There is no further vulnerability associated with this error, merely an
+information disclosure.
+
+Action required in order to resolve CVE-2018-14628!
+---------------------------------------------------
+
+The patched Samba does NOT protect existing domains!
+
+The administrator needs to run the following command
+(on only one domain controller)
+in order to apply the protection to an existing domain:
+
+  samba-tool dbcheck --cross-ncs --attrs=nTSecurityDescriptor --fix
+
+The above requires manual interaction in order to review the
+changes before they are applied. Typicall question look like this:
+
+  Reset nTSecurityDescriptor on CN=Deleted Objects,DC=samba,DC=org back to provision default?
+        Owner mismatch: SY (in ref) DA(in current)
+        Group mismatch: SY (in ref) DA(in current)
+        Part dacl is different between reference and current here is the detail:
+                (A;;LCRPLORC;;;AU) ACE is not present in the reference
+                (A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;SY) ACE is not present in the reference
+                (A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;DA) ACE is not present in the reference
+                (A;;CCDCLCSWRPWPSDRCWDWO;;;SY) ACE is not present in the current
+                (A;;LCRP;;;BA) ACE is not present in the current
+   [y/N/all/none] y
+  Fixed attribute &apos;nTSecurityDescriptor&apos; of &apos;CN=Deleted Objects,DC=samba,DC=org&apos;
+
+The change should be confirmed with &apos;y&apos; for all objects starting with
+&apos;CN=Deleted Objects&apos;.
+
+
+Changes since 4.18.8
+--------------------
+
+o  Michael Adam &lt;obnox@samba.org&gt;
+   * BUG 15497: Add make command for querying Samba version.
+
+o  Ralph Boehme &lt;slow@samba.org&gt;
+   * BUG 15487: smbd crashes if asked to return full information on close of a
+     stream handle with delete on close disposition set.
+   * BUG 15521: smbd: fix close order of base_fsp and stream_fsp in
+     smb_fname_fsp_destructor().
+
+o  Bj&ouml;rn Jacke &lt;bj@sernet.de&gt;
+   * BUG 15093: Files without &quot;read attributes&quot; NFS4 ACL permission are not
+     listed in directories.
+
+o  Stefan Metzmacher &lt;metze@samba.org&gt;
+   * BUG 13595: CVE-2018-14628 [SECURITY] Deleted Object tombstones visible in
+     AD LDAP to normal users.
+
+o  Christof Schmitt &lt;cs@samba.org&gt;
+   * BUG 15507: vfs_gpfs stat calls fail due to file system permissions.
+
+o  Christof Schmitt &lt;christof.schmitt@us.ibm.com&gt;
+   * BUG 15497: Add make command for querying Samba version.
+
+o  Martin Schwenke &lt;mschwenke@ddn.com&gt;
+   * BUG 15479: ctdbd: setproctitle not initialized messages flooding logs.
+
+
+</pre>
+</p>
+</body>
+</html>
diff --git a/posted_news/20231129-143633.4.18.9.body.html b/posted_news/20231129-143633.4.18.9.body.html
new file mode 100644 (file)
index 0000000..5dc42cb
--- /dev/null
@@ -0,0 +1,13 @@
+<!-- BEGIN: posted_news/20231129-143633.4.18.9.body.html -->
+<h5><a name="4.18.9">29 November 2023</a></h5>
+<p class=headline>Samba 4.18.9 Available for Download</p>
+<p>
+This is the latest stable release of the Samba 4.18 release series.
+</p>
+<p>
+The uncompressed tarball has been signed using GnuPG (ID AA99442FB680B620).
+The source code can be <a href="https://download.samba.org/pub/samba/stable/samba-4.18.9.tar.gz">downloaded now</a>.
+A <a href="https://download.samba.org/pub/samba/patches/samba-4.18.8-4.18.9.diffs.gz">patch against Samba 4.18.8</a> is also available.
+See <a href="https://www.samba.org/samba/history/samba-4.18.9.html">the release notes for more info</a>.
+</p>
+<!-- END: posted_news/20231129-143633.4.18.9.body.html -->
diff --git a/posted_news/20231129-143633.4.18.9.headline.html b/posted_news/20231129-143633.4.18.9.headline.html
new file mode 100644 (file)
index 0000000..4dc688e
--- /dev/null
@@ -0,0 +1,3 @@
+<!-- BEGIN: posted_news/20231129-143633.4.18.9.headline.html -->
+<li> 29 November 2023 <a href="#4.18.9">Samba 4.18.9 Available for Download</a></li>
+<!-- END: posted_news/20231129-143633.4.18.9.headline.html -->