Skip to content

Commit 5a402fc

Browse files
authored
[secretsdump] Filter foreign users when parsing NTDS.dit (#1759)
1 parent d842c24 commit 5a402fc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

impacket/examples/secretsdump.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1963,6 +1963,7 @@ class SECRET_TYPE:
19631963
'pekList':b'ATTk590689',
19641964
'supplementalCredentials':b'ATTk589949',
19651965
'pwdLastSet':b'ATTq589920',
1966+
'instanceType':b'ATTj131073',
19661967
}
19671968

19681969
NAME_TO_ATTRTYP = {
@@ -2100,6 +2101,7 @@ def __init__(self, ntdsFile, bootKey, isRemote=False, history=False, noLMHash=Tr
21002101
self.NAME_TO_INTERNAL['userAccountControl'] : 1,
21012102
self.NAME_TO_INTERNAL['supplementalCredentials'] : 1,
21022103
self.NAME_TO_INTERNAL['pekList'] : 1,
2104+
self.NAME_TO_INTERNAL['instanceType'] : 1,
21032105

21042106
}
21052107

@@ -2121,7 +2123,7 @@ def __getPek(self):
21212123
elif record[self.NAME_TO_INTERNAL['pekList']] is not None:
21222124
peklist = unhexlify(record[self.NAME_TO_INTERNAL['pekList']])
21232125
break
2124-
elif record[self.NAME_TO_INTERNAL['sAMAccountType']] in self.ACCOUNT_TYPES:
2126+
elif record[self.NAME_TO_INTERNAL['sAMAccountType']] in self.ACCOUNT_TYPES and record[self.NAME_TO_INTERNAL['instanceType']] & 4: # "The object is writable on this directory":
21252127
# Okey.. we found some users, but we're not yet ready to process them.
21262128
# Let's just store them in a temp list
21272129
self.__tmpUsers.append(record)
@@ -2648,7 +2650,7 @@ def dump(self):
26482650
if record is None:
26492651
break
26502652
try:
2651-
if record[self.NAME_TO_INTERNAL['sAMAccountType']] in self.ACCOUNT_TYPES:
2653+
if record[self.NAME_TO_INTERNAL['sAMAccountType']] in self.ACCOUNT_TYPES and record[self.NAME_TO_INTERNAL['instanceType']] & 4: # "The object is writable on this directory"
26522654
self.__decryptHash(record, outputFile=hashesOutputFile)
26532655
if self.__justNTLM is False:
26542656
self.__decryptSupplementalInfo(record, None, keysOutputFile, clearTextOutputFile)

0 commit comments

Comments
 (0)