Skip to content

Commit 0fd9f28

Browse files
authored
secretsdump - changing log level for message displayed when account does not have sam hash information (#1860)
1 parent e9a47ff commit 0fd9f28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

impacket/examples/secretsdump.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1432,7 +1432,7 @@ def dump(self):
14321432
userName = V[userAccount['NameOffset']:userAccount['NameOffset']+userAccount['NameLength']].decode('utf-16le')
14331433

14341434
if userAccount['NTHashLength'] == 0:
1435-
logging.error('SAM hashes extraction for user %s failed. The account doesn\'t have hash information.' % userName)
1435+
logging.debug('The account %s doesn\'t have hash information.' % userName)
14361436
continue
14371437

14381438
encNTHash = b''

0 commit comments

Comments
 (0)