Skip to content

Commit 7a63383

Browse files
committed
Increase debugging logs
1 parent d4ac998 commit 7a63383

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/scapy/layers/dcerpc.uts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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})
890891
client.open_smbpipe("wkssvc")
891892
client.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})
944946
client.open_smbpipe("wkssvc")
945947
client.bind(find_dcerpc_interface("wkssvc"))
946948

0 commit comments

Comments
 (0)