mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
tests/krb5: Move KDC TGT tests to new file
We can now rely on having MIT Kerberos 1.20 available. Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
e390e674ec
commit
1def8f04f3
@ -120,54 +120,6 @@ class CompatabilityTests(KDCBaseTest):
|
||||
self.fail(
|
||||
"(Heimdal) Salt populated for ARCFOUR_HMAC_MD5 encryption")
|
||||
|
||||
# This tests also passes again Samba AD built with MIT Kerberos 1.20 which
|
||||
# is not released yet.
|
||||
#
|
||||
# FIXME: Should be moved to to a new kdc_tgt_tests.py once MIT KRB5 1.20
|
||||
# is released.
|
||||
def test_ticket_signature(self):
|
||||
# Ensure that a DC correctly issues tickets signed with its krbtgt key.
|
||||
user_creds = self.get_client_creds()
|
||||
target_creds = self.get_service_creds()
|
||||
|
||||
krbtgt_creds = self.get_krbtgt_creds()
|
||||
key = self.TicketDecryptionKey_from_creds(krbtgt_creds)
|
||||
|
||||
# Get a TGT from the DC.
|
||||
tgt = self.get_tgt(user_creds)
|
||||
|
||||
# Ensure the PAC contains the expected checksums.
|
||||
self.verify_ticket(tgt, key, service_ticket=False)
|
||||
|
||||
# Get a service ticket from the DC.
|
||||
service_ticket = self.get_service_ticket(tgt, target_creds)
|
||||
|
||||
# Ensure the PAC contains the expected checksums.
|
||||
self.verify_ticket(service_ticket, key, service_ticket=True,
|
||||
expect_ticket_checksum=True)
|
||||
|
||||
def test_full_signature(self):
|
||||
# Ensure that a DC correctly issues tickets signed with its krbtgt key.
|
||||
user_creds = self.get_client_creds()
|
||||
target_creds = self.get_service_creds()
|
||||
|
||||
krbtgt_creds = self.get_krbtgt_creds()
|
||||
key = self.TicketDecryptionKey_from_creds(krbtgt_creds)
|
||||
|
||||
# Get a TGT from the DC.
|
||||
tgt = self.get_tgt(user_creds)
|
||||
|
||||
# Ensure the PAC contains the expected checksums.
|
||||
self.verify_ticket(tgt, key, service_ticket=False)
|
||||
|
||||
# Get a service ticket from the DC.
|
||||
service_ticket = self.get_service_ticket(tgt, target_creds)
|
||||
|
||||
# Ensure the PAC contains the expected checksums.
|
||||
self.verify_ticket(service_ticket, key, service_ticket=True,
|
||||
expect_ticket_checksum=True,
|
||||
expect_full_checksum=True)
|
||||
|
||||
def as_pre_auth_req(self, creds, etypes):
|
||||
user = creds.get_username()
|
||||
realm = creds.get_realm()
|
||||
|
86
python/samba/tests/krb5/kdc_tgt_tests.py
Executable file
86
python/samba/tests/krb5/kdc_tgt_tests.py
Executable file
@ -0,0 +1,86 @@
|
||||
#!/usr/bin/env python3
|
||||
# Unix SMB/CIFS implementation.
|
||||
# Copyright (C) Stefan Metzmacher 2020
|
||||
# Copyright (C) 2020 Catalyst.Net Ltd
|
||||
#
|
||||
# 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 <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
import sys
|
||||
import os
|
||||
|
||||
sys.path.insert(0, "bin/python")
|
||||
os.environ["PYTHONUNBUFFERED"] = "1"
|
||||
|
||||
from samba.tests.krb5.kdc_base_test import KDCBaseTest
|
||||
|
||||
global_asn1_print = False
|
||||
global_hexdump = False
|
||||
|
||||
|
||||
class KdcTgtTests(KDCBaseTest):
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
self.do_asn1_print = global_asn1_print
|
||||
self.do_hexdump = global_hexdump
|
||||
|
||||
def test_ticket_signature(self):
|
||||
# Ensure that a DC correctly issues tickets signed with its krbtgt key.
|
||||
user_creds = self.get_client_creds()
|
||||
target_creds = self.get_service_creds()
|
||||
|
||||
krbtgt_creds = self.get_krbtgt_creds()
|
||||
key = self.TicketDecryptionKey_from_creds(krbtgt_creds)
|
||||
|
||||
# Get a TGT from the DC.
|
||||
tgt = self.get_tgt(user_creds)
|
||||
|
||||
# Ensure the PAC contains the expected checksums.
|
||||
self.verify_ticket(tgt, key, service_ticket=False)
|
||||
|
||||
# Get a service ticket from the DC.
|
||||
service_ticket = self.get_service_ticket(tgt, target_creds)
|
||||
|
||||
# Ensure the PAC contains the expected checksums.
|
||||
self.verify_ticket(service_ticket, key, service_ticket=True,
|
||||
expect_ticket_checksum=True)
|
||||
|
||||
def test_full_signature(self):
|
||||
# Ensure that a DC correctly issues tickets signed with its krbtgt key.
|
||||
user_creds = self.get_client_creds()
|
||||
target_creds = self.get_service_creds()
|
||||
|
||||
krbtgt_creds = self.get_krbtgt_creds()
|
||||
key = self.TicketDecryptionKey_from_creds(krbtgt_creds)
|
||||
|
||||
# Get a TGT from the DC.
|
||||
tgt = self.get_tgt(user_creds)
|
||||
|
||||
# Ensure the PAC contains the expected checksums.
|
||||
self.verify_ticket(tgt, key, service_ticket=False)
|
||||
|
||||
# Get a service ticket from the DC.
|
||||
service_ticket = self.get_service_ticket(tgt, target_creds)
|
||||
|
||||
# Ensure the PAC contains the expected checksums.
|
||||
self.verify_ticket(service_ticket, key, service_ticket=True,
|
||||
expect_ticket_checksum=True,
|
||||
expect_full_checksum=True)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
global_asn1_print = False
|
||||
global_hexdump = False
|
||||
import unittest
|
||||
unittest.main()
|
Loading…
Reference in New Issue
Block a user