From: David Mulder Date: Fri, 26 Jun 2020 18:37:11 +0000 (-0600) Subject: gpo: Test Group Policy Sudo Rights X-Git-Tag: talloc-2.3.2~930 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9679ba9577c70756e4bcaf17351fca4dbb1c8f31;p=thirdparty%2Fsamba.git gpo: Test Group Policy Sudo Rights Signed-off-by: David Mulder Reviewed-by: Douglas Bagnall --- diff --git a/python/samba/gp_sudoers_ext.py b/python/samba/gp_sudoers_ext.py new file mode 100644 index 00000000000..1033af1771b --- /dev/null +++ b/python/samba/gp_sudoers_ext.py @@ -0,0 +1,22 @@ +# gp_sudoers_ext samba gpo policy +# Copyright (C) David Mulder 2020 +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +from samba.gpclass import gp_pol_ext + +class gp_sudoers_ext(gp_pol_ext): + def process_group_policy(self, deleted_gpo_list, changed_gpo_list, + sdir='/etc/sudoers.d'): + pass diff --git a/python/samba/tests/gpo.py b/python/samba/tests/gpo.py index 82057286c73..41b499d5e0e 100644 --- a/python/samba/tests/gpo.py +++ b/python/samba/tests/gpo.py @@ -26,6 +26,7 @@ from subprocess import Popen, PIPE from tempfile import NamedTemporaryFile, TemporaryDirectory from samba.gp_sec_ext import gp_sec_ext from samba.gp_scripts_ext import gp_scripts_ext +from samba.gp_sudoers_ext import gp_sudoers_ext import logging from samba.credentials import Credentials from samba.compat import get_bytes @@ -370,3 +371,47 @@ class GPOTests(tests.TestCase): # Unstage the Registry.pol file unstage_file(reg_pol) + + def test_gp_sudoers(self): + local_path = self.lp.cache_path('gpo_cache') + guid = '{31B2F340-016D-11D2-945F-00C04FB984F9}' + reg_pol = os.path.join(local_path, policies, guid, + 'MACHINE/REGISTRY.POL') + logger = logging.getLogger('gpo_tests') + cache_dir = self.lp.get('cache directory') + store = GPOStorage(os.path.join(cache_dir, 'gpo.tdb')) + + machine_creds = Credentials() + machine_creds.guess(self.lp) + machine_creds.set_machine_account() + + # Initialize the group policy extension + ext = gp_sudoers_ext(logger, self.lp, machine_creds, store) + + ads = gpo.ADS_STRUCT(self.server, self.lp, machine_creds) + if ads.connect(): + gpos = ads.get_gpo_list(machine_creds.get_username()) + + # Stage the Registry.pol file with test data + stage = preg.file() + e = preg.entry() + e.keyname = b'Software\\Policies\\Samba\\Unix Settings\\Sudo Rights' + e.valuename = b'Software\\Policies\\Samba\\Unix Settings' + e.type = 1 + e.data = b'fakeu ALL=(ALL) NOPASSWD: ALL' + stage.num_entries = 1 + stage.entries = [e] + ret = stage_file(reg_pol, ndr_pack(stage)) + self.assertTrue(ret, 'Could not create the target %s' % reg_pol) + + # Process all gpos, with temp output directory + with TemporaryDirectory() as dname: + ext.process_group_policy([], gpos, dname) + sudoers = os.listdir(dname) + self.assertEquals(len(sudoers), 1, 'The sudoer file was not created') + self.assertIn(e.data, + open(os.path.join(dname, sudoers[0]), 'r').read(), + 'The sudoers entry was not applied') + + # Unstage the Registry.pol file + unstage_file(reg_pol) diff --git a/selftest/knownfail b/selftest/knownfail index 6c005d1f4de..1611abfb45c 100644 --- a/selftest/knownfail +++ b/selftest/knownfail @@ -396,3 +396,4 @@ ^samba.tests.ntlmdisabled.python\(ktest\).python2.ntlmdisabled.NtlmDisabledTests.test_samr_change_password\(ktest\) ^samba.tests.ntlmdisabled.python\(ad_dc_no_ntlm\).python3.ntlmdisabled.NtlmDisabledTests.test_ntlm_connection\(ad_dc_no_ntlm\) ^samba.tests.ntlmdisabled.python\(ad_dc_no_ntlm\).python2.ntlmdisabled.NtlmDisabledTests.test_ntlm_connection\(ad_dc_no_ntlm\) +^samba.tests.gpo.samba.tests.gpo.GPOTests.test_gp_sudoers