We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdfa185 commit 6b63b14Copy full SHA for 6b63b14
credslayer/parsers/ntlmssp.py
@@ -35,7 +35,7 @@ def analyse(session: Session, layer: BaseLayer):
35
current_creds = session.credentials_being_built
36
37
if current_creds and hasattr(layer, "nt_status"):
38
- status = int(layer.nt_status)
+ status = int(layer.nt_status, 16)
39
40
if status == 0: # LOGON SUCCESS
41
logger.found(session, "{} found: {}".format(current_creds.context["version"], current_creds.hash))
0 commit comments