We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75e4656 commit eb42f7bCopy full SHA for eb42f7b
1 file changed
nxc/modules/ntds-dump-raw.py
@@ -176,8 +176,11 @@ def main(self):
176
if self.number_of_file_to_extract != 0:
177
self.logger.fail("Unable to find all needed files, trying to work with what we have")
178
179
- self.logger.success("Heads up, hashes on the way...")
180
- self.dump_hashes()
+ if "SYSTEM" in self.extracted_files_location_local and self.extracted_files_location_local["SYSTEM"] != "":
+ self.logger.success("Heads up, hashes on the way...")
181
+ self.dump_hashes()
182
+ else:
183
+ self.logger.fail("SYSTEM file not found, unable to proceed with hash extraction")
184
185
def dump_hashes(self):
186
"""Dumping NTDS and SAM hashes locally from the extracted files"""
0 commit comments