#13463 closed enhancement (fixed)
samba-4.12.2
Reported by: | Douglas R. Reno | Owned by: | Douglas R. Reno |
---|---|---|---|
Priority: | high | Milestone: | 10.0 |
Component: | BOOK | Version: | SVN |
Severity: | normal | Keywords: | |
Cc: |
Description ¶
New point version
This is a security release
Release Announcements --------------------- These are a security releases in order to address the following defects: o CVE-2020-10700: Use-after-free in Samba AD DC LDAP Server with ASQ o CVE-2020-10704: LDAP Denial of Service (stack overflow) in Samba AD DC ======= Details ======= o CVE-2020-10700: A client combining the 'ASQ' and 'Paged Results' LDAP controls can cause a use-after-free in Samba's AD DC LDAP server. o CVE-2020-10704: A deeply nested filter in an un-authenticated LDAP search can exhaust the LDAP server's stack memory causing a SIGSEGV. For more details, please refer to the security advisories. Changes: -------- o Andrew Bartlett <abartlet@samba.org> * BUG 14331: CVE-2020-10700: Fix use-after-free in AD DC LDAP server when ASQ and paged_results combined. o Gary Lockyer <gary@catalyst.net.nz> * BUG 20454: CVE-2020-10704: Fix LDAP Denial of Service (stack overflow) in Samba AD DC.
CVE-2020-10700
CVE-2020-10700.html =========================================================== == Subject: Use-after-free in Samba AD DC LDAP Server with ASQ == == CVE ID#: CVE-2020-10700 == == Versions: Samba 4.10.0 and later == == Summary: A client combining the 'ASQ' and 'Paged Results' LDAP controls can cause a use-after-free in Samba's AD DC LDAP server =========================================================== =========== Description =========== Samba has, since Samba 4.0, supported the Paged Results LDAP feature, to allow clients to obtain pages of search results against a Samba AD DC using an LDAP control. Since Samba 4.7.11 and 4.8.6 a Denial of Service prevention has been in place in this module, to age out old client requests if more than 10 such requests are outstanding. A rewrite of the module for more efficient memory handling in Samba 4.11 changed the module behaviour, and combined with the above to introduce the use-after-free. The use-after-free occurs when the 'Paged Results' control is combined with the 'ASQ' control, another Active Directory LDAP feature. ================== Patch Availability ================== Patches addressing both of these issues have been posted to: https://www.samba.org/samba/security/ Additionally, Samba 4.10.15, 4.11.8 and 4.12.2 have been issued as security releases to correct the defect. Samba administrators are advised to upgrade to these releases or apply the patch as soon as possible. ================== CVSSv3 calculation ================== CVSS:3.1:AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:H (5.3) ================================ Workaround or mitigating factors ================================ The crash is hard to trigger, and relies in particular on the chain of child and grandchild links being queried with ASQ. Malicious users without write access will need to find a suitable chain within the existing directory layout. ======= Credits ======= Originally reported by Andrei Popa . Patches provided by Andrew Bartlett of Catalyst and the Samba team. ========================================================== == Our Code, Our Bugs, Our Responsibility. == The Samba Team ==========================================================
CVE-2020-10704
CVE-2020-10704.html =========================================================== == Subject: LDAP Denial of Service (stack overflow) in == Samba AD DC == == CVE ID#: CVE-2020-10704 == == Versions: All versions of Samba since Samba 4.0.0 == == Summary: A deeply nested filter in an un-authenticated == LDAP search can exhaust the LDAP server's stack == memory causing a SIGSEGV. =========================================================== =========== Description =========== LDAP is encoded as ASN.1, and LDAP filters are defined recursively as Filter ::= CHOICE { and [0] SET OF Filter, or [1] SET OF Filter, not [2] Filter, This recursion is mirrored in Samba's recursive decent parser, which consumes around 600 bytes of stack per filter sent by the client. In Samba, LDAP packets are parsed pre-authentication. As an example on Linux x86_64, a LDAP search expression of (|(|(x=y))) will consume over 1k of stack (600 bytes or so per OR). Therefore, even a fairly small, un-authenticated LDAP packet can cause the server to fault with SIGSEGV as the stack reaches the OS-imposed limit (8MB in this case). If the network architecture allows a CLDAP packet (to UDP port 389) of over 13,000 bytes (the maximum UDP packet size is 65,535) this would also fit enough ASN.1 to crash the CLDAP server. Samba 4.11 and later use the 'prefork' process model by default for LDAP, and all versions use single process for CLDAP. This shares one process between multiple network clients. By crashing one worker, legitimate service is disrupted to other clients. The process is restarted in all supported versions, but with a back-off. NOTE WELL: Unsupported Samba versions before Samba 4.7 use a single process for the (C)LDAP servers. All versions of Samba before Samba 4.10 do not restart that process. To address further concerns about resource use from LDAP packets, new pre-parse limits are placed on LDAP searches (250k packet size limit), all un-authenticated packets (250k packet size limit) other authenticated packets (16MB) and CLDAP packets (4k). * For authenticated connections the maximum packet size is controlled by the smb.conf parameter "ldap max authenticated request size" * For anonymous connections the maximum packet size is controlled by the smb.conf parameter "ldap max anonymous request size" * For searches, the maximum packet size is controlled by the smb.conf parameter "ldap max search request size" ================== Patch Availability ================== Patches addressing both these issues have been posted to: https://www.samba.org/samba/security/ Additionally, Samba 4.10.15, 4.11.8 and 4.12.2 have been issued as security releases to correct the defect. Samba administrators are advised to upgrade to these releases or apply the patch as soon as possible. ================== CVSSv3 calculation ================== CVSSv3.1: AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H (7.5) ================================ Workaround and mitigating factors ================================ By default, Samba 4.10 is run using the "standard" process model, which would leave only the CLDAP server affected. (Later versions use 'prefork'). This is controlled by the -M or --model parameter to the samba binary. All Samba versions are impacted if -M prefork or -M single is used. To mitigate this issue for LDAP only, select -M standard (however this will use more memory, may allow resource exhaustion, and will still leave the CLDAP server exposed). ======= Credits ======= Credit to oss-fuzz. Triage of the oss-fuzz report and advisory written by Andrew Bartlett of Catalyst and the Samba Team. Patches provided by Gary Lockyer of Catalyst and the Samba Team. ========================================================== == Our Code, Our Bugs, Our Responsibility. == The Samba Team ==========================================================
Change History (5)
comment:1 by , 5 years ago
Priority: | normal → high |
---|
comment:2 by , 5 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:3 by , 5 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
Fixed at r23037