Skip to content

Commit 413e5cd

Browse files
committed
Fix display bug with ip and add creds to sccmhunter
1 parent f18c442 commit 413e5cd

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

nxc/modules/sccm.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
class NXCModule:
1313
"""
1414
Implementation of the SCCM RECON-1 technique to find SCCM related objects in Active Directory.
15-
See: https://github.com/subat0mik/Misconfiguration-Manager/blob/main/attack-techniques/RECON/RECON-1/recon-1_description.md
15+
See:
16+
https://github.com/subat0mik/Misconfiguration-Manager/blob/main/attack-techniques/RECON/RECON-1/recon-1_description.md
17+
https://github.com/garrettfoster13/sccmhunter
1618
1719
Module by @NeffIsBack
1820
"""
@@ -187,7 +189,7 @@ def get_management_points(self):
187189
self.sccm_sites[mp["mSSMSSiteCode"]]["ManagementPoints"].append({
188190
"cn": mp["cn"],
189191
"dNSHostName": mp["dNSHostName"],
190-
"IPAddress": ip if ip else "-",
192+
"IPAddress": ip["host"] if ip else "-",
191193
"mSSMSDefaultMP": mp["mSSMSDefaultMP"],
192194
})
193195

0 commit comments

Comments
 (0)