Commits on Source (20)
-
Count number of answers generated by internal DNS query routine and stop at 20 to match Microsoft's loop prevention mechanism. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13600 Signed-off-by:
Aaron Haslett <aaronhaslett@catalyst.net.nz> Reviewed-by:
Andrew Bartlett <abartlet@samba.org> Reviewed-by:
Garming Sam <garming@catalyst.net.nz>
-
In Heimdal KRB5_KDC_ERR_CLIENT_NAME_MISMATCH is an enum, so we tried to double-free mem_ctx. This was introduced in 9a0263a7 for the MIT KDC effort. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13628 Signed-off-by:
Andrew Bartlett <abartlet@samba.org> Reviewed-by:
Gary Lockyer <gary@catalyst.net.nz>
-
CVE-2018-16841 selftest: Check for mismatching principal in certficate compared with principal in AS-REQ BUG: https://bugzilla.samba.org/show_bug.cgi?id=13628 Signed-off-by:
Andrew Bartlett <abartlet@samba.org> Reviewed-by:
Gary Lockyer <gary@catalyst.net.nz>
-
In the case of hitting the talloc ~256MB limit, this causes a crash in the server. Note that you would actually need to load >256MB of data into the LDAP. Although there is some generated/hidden data which would help you reach that limit (descriptors and RMD blobs). BUG: https://bugzilla.samba.org/show_bug.cgi?id=13674 Signed-off-by:
Garming Sam <garming@catalyst.net.nz> Reviewed-by:
Andrew Bartlett <abartlet@samba.org>
-
Tests to verify Bug 13669 - (CVE-2018-16852) NULL pointer de-reference in Samba AD DC DNS management The presence of the ZONE_MASTER_SERVERS property or the ZONE_SCAVENGING_SERVERS property in a zone record causes the server to follow a null pointer and terminate. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13669 Reviewed-by:
Andrew Bartlett <abartlet@samba.org> Signed-off-by:
Gary Lockyer <gary@catalyst.net.nz>
-
Fixes for Bug 13669 - (CVE-2018-16852) NULL pointer de-reference in Samba AD DC DNS management The presence of the ZONE_MASTER_SERVERS property or the ZONE_SCAVENGING_SERVERS property in a zone record causes the server to follow a null pointer and terminate. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13669 Signed-off-by:
Gary Lockyer <gary@catalyst.net.nz> Reviewed-by:
Andrew Bartlett <abartlet@samba.org>
-
dnsserver_common.c and dnsutils.c both share similar code to process zone properties. This patch extracts the common code and moves it to dnsserver_common.c. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13669 Signed-off-by:
Gary Lockyer <gary@catalyst.net.nz> Reviewed-by:
Andrew Bartlett <abartlet@samba.org>
-
This matches https://wiki.samba.org/index.php/Running_a_Samba_AD_DC_with_MIT_Kerberos_KDC BUG: https://bugzilla.samba.org/show_bug.cgi?id=13678 Signed-off-by:
Andrew Bartlett <abartlet@samba.org> Reviewed-by:
Gary Lockyer <gary@catalyst.net.nz>
-
This will make it easier to avoid flapping tests. Signed-off-by:
Andrew Bartlett <abartlet@samba.org> Reviewed-by:
Gary Lockyer <gary@catalyst.net.nz> (cherry picked from commit a740a613) Backported as a dependency for: BUG: https://bugzilla.samba.org/show_bug.cgi?id=13683
-
Signed-off-by:
Joe Guo <joeg@catalyst.net.nz> Reviewed-by:
Andrew Bartlett <abartlet@samba.org> Reviewed-by:
Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Partial backport of commit 115f2a71 (only password_lockout.py change) as a dependency for: BUG: https://bugzilla.samba.org/show_bug.cgi?id=13683
-
This means we can have a long observation window for many of the tests and so make them much more reliable. Many of these cause frustrating flapping failures in our CI systems. Signed-off-by:
Andrew Bartlett <abartlet@samba.org> Reviewed-by:
Gary Lockyer <gary@catalyst.net.nz> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Mon Sep 3 06:14:55 CEST 2018 on sn-devel-144 (cherry picked from commit 74357bf3) Backported as a dependency for: BUG: https://bugzilla.samba.org/show_bug.cgi?id=13683
-
Signed-off-by:
Joe Guo <joeg@catalyst.net.nz> Reviewed-by:
Andrew Bartlett <abartlet@samba.org> Reviewed-by:
Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Partial backport of commit bbb9f576 (only password_lockout_base.py change) as a dependency for: BUG: https://bugzilla.samba.org/show_bug.cgi?id=13683
-
Signed-off-by:
Joe Guo <joeg@catalyst.net.nz> Reviewed-by:
Andrew Bartlett <abartlet@samba.org> Reviewed-by:
Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Partial backport of commit 1ccc36b4 (only password_lockout_base.py change) as a dependency for: BUG: https://bugzilla.samba.org/show_bug.cgi?id=13683
-
Sanity-check that when we use the default lockOutObservationWindow that user lockout actually works. The easiest way to do this is to reuse the _test_login_lockout() test-case, but stop at the point where we wait for the lockout duration to expire (because we don't want the test to wait 30 mins). This highlights a problem currently where the default values don't work. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13683 Signed-off-by:
Tim Beale <timbeale@catalyst.net.nz> Reviewed-by:
Andrew Bartlett <abartlet@samba.org>
-
Commit 442a38c9 refactored some code into a new get_lockout_observation_window() function. However, in moving the code, an ldb_msg_find_attr_as_int64() inadvertently got converted to a ldb_msg_find_attr_as_int(). ldb_msg_find_attr_as_int() will only work for values up to -2147483648 (about 3.5 minutes in MS timestamp form). Unfortunately, the automated tests used a low enough timeout that they still worked, however, password lockout would not work with the Samba default settings. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13683 Signed-off-by:
Tim Beale <timbeale@catalyst.net.nz> Reviewed-by:
Andrew Bartlett <abartlet@samba.org>
-
Fix a remaining place where we were trying to read the msDS-LockoutObservationWindow as an int instead of an int64. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13683 Signed-off-by:
Tim Beale <timbeale@catalyst.net.nz> Reviewed-by:
Andrew Bartlett <abartlet@samba.org>
-
Clearly the lockOutObservationWindow value is important, and using a default value of zero doesn't work very well. This patch adds a better default value (the domain default setting of 30 minutes). BUG: https://bugzilla.samba.org/show_bug.cgi?id=13683 Signed-off-by:
Tim Beale <timbeale@catalyst.net.nz> Reviewed-by:
Andrew Bartlett <abartlet@samba.org>
-
Mathieu Parent authored
-
Mathieu Parent authored
-
Mathieu Parent authored
debian/patches/CVE-2018-14629-v4-9.patch
0 → 100644
debian/patches/CVE-2018-16841-master.patch
0 → 100644
debian/patches/CVE-2018-16851-master.patch
0 → 100644
debian/patches/CVE-2018-16852-v4-9-v2.patch
0 → 100644
This diff is collapsed.
debian/patches/CVE-2018-16857-v4-9.patch
0 → 100644
This diff is collapsed.