1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

py:dcerpc/raw_protocol: add test_assoc_group_ok2 to check assoc groups over ncacn_np

BUG: https://bugzilla.samba.org/show_bug.cgi?id=7113
BUG: https://bugzilla.samba.org/show_bug.cgi?id=11892

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Stefan Metzmacher 2018-12-12 12:35:09 +01:00 committed by Jeremy Allison
parent 276286caa9
commit b1c6b954a1
2 changed files with 32 additions and 0 deletions

View File

@ -4984,6 +4984,37 @@ class TestDCERPC_BIND(RawDCERPCTest):
conn2._disconnect("End of Test")
return
def test_assoc_group_ok2(self):
abstract = samba.dcerpc.mgmt.abstract_syntax()
transfer = base.transfer_syntax_ndr()
self.reconnect_smb_pipe(primary_address='\\pipe\\lsass',
transport_creds=self.get_user_creds())
(ctx1, ack1) = self.prepare_presentation(abstract, transfer,
context_id=1, return_ack=True)
conn2 = self.second_connection()
(ctx2, ack2) = conn2.prepare_presentation(abstract, transfer,
assoc_group_id=ack1.u.assoc_group_id,
context_id=2, return_ack=True)
inq_if_ids = samba.dcerpc.mgmt.inq_if_ids()
self.do_single_request(call_id=1, ctx=ctx1, io=inq_if_ids)
conn2.do_single_request(call_id=1, ctx=ctx2, io=inq_if_ids)
conn2.do_single_request(call_id=1, ctx=ctx1, io=inq_if_ids,
fault_pfc_flags=(
samba.dcerpc.dcerpc.DCERPC_PFC_FLAG_FIRST |
samba.dcerpc.dcerpc.DCERPC_PFC_FLAG_LAST |
samba.dcerpc.dcerpc.DCERPC_PFC_FLAG_DID_NOT_EXECUTE),
fault_status=dcerpc.DCERPC_NCA_S_UNKNOWN_IF,
fault_context_id=0)
self.do_single_request(call_id=1, ctx=ctx1, io=inq_if_ids)
conn2.do_single_request(call_id=1, ctx=ctx2, io=inq_if_ids)
conn2._disconnect("End of Test")
return
def _test_krb5_hdr_sign_delayed1(self, do_upgrade):
auth_type = dcerpc.DCERPC_AUTH_TYPE_KRB5
auth_level = dcerpc.DCERPC_AUTH_LEVEL_INTEGRITY

View File

@ -0,0 +1 @@
^samba.tests.dcerpc.raw_protocol.*.TestDCERPC_BIND.test_assoc_group_ok2