File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -878,6 +878,7 @@ rpcserver = MyRPCServer.spawn(
878878 iface=conf.loopback_name,
879879 port=12345,
880880 bg=True,
881+ debug=4,
881882)
882883
883884= Functional: Connect to it with DCERPC_Client over NCACN_NP
@@ -886,7 +887,7 @@ client = DCERPC_Client(
886887 DCERPC_Transport.NCACN_NP,
887888 ndr64=False,
888889)
889- client.connect(get_if_addr(conf.loopback_name), port=12345)
890+ client.connect(get_if_addr(conf.loopback_name), port=12345, smb_kwargs={"debug": 4} )
890891client.open_smbpipe("wkssvc")
891892client.bind(find_dcerpc_interface("wkssvc"))
892893
@@ -931,6 +932,7 @@ rpcserver = MyRPCServer.spawn(
931932 ssp=ssp,
932933 port=12345,
933934 bg=True,
935+ debug=4,
934936)
935937
936938= Functional: Connect to it with DCERPC_Client over NCACN_NP with NTLMSSP
@@ -940,7 +942,7 @@ client = DCERPC_Client(
940942 ssp=ssp,
941943 ndr64=False,
942944)
943- client.connect(get_if_addr(conf.loopback_name), port=12345, smb_kwargs={"debug": 5 })
945+ client.connect(get_if_addr(conf.loopback_name), port=12345, smb_kwargs={"debug": 4 })
944946client.open_smbpipe("wkssvc")
945947client.bind(find_dcerpc_interface("wkssvc"))
946948
You can’t perform that action at this time.
0 commit comments