From b62e0e2a22a5ce1f3a4e23034894e649db07a0cf Mon Sep 17 00:00:00 2001 From: Goultarde Date: Thu, 16 Jul 2026 23:05:42 +0200 Subject: [PATCH] fix(smb/sccm): pass kdcHost/dc_ip to dploot Target so --sccm wmi doesn't hang over Kerberos --- nxc/protocols/smb.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nxc/protocols/smb.py b/nxc/protocols/smb.py index dbf342c7c6..0ba8077d73 100755 --- a/nxc/protocols/smb.py +++ b/nxc/protocols/smb.py @@ -2164,6 +2164,8 @@ def sccm(self): lmhash=self.lmhash, nthash=self.nthash, do_kerberos=self.kerberos, + kdcHost=self.kdcHost, + dc_ip=self.kdcHost, aesKey=self.aesKey, no_pass=True, use_kcache=self.use_kcache, @@ -2244,6 +2246,7 @@ def dpapi(self): lmhash=self.lmhash, nthash=self.nthash, do_kerberos=self.kerberos, + kdcHost=self.kdcHost, aesKey=self.aesKey, no_pass=True, use_kcache=self.use_kcache,