Skip to content

Commit 6b63b14

Browse files
committed
parsers/ntlmssp.py : nt_status appears to be hex now
1 parent bdfa185 commit 6b63b14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

credslayer/parsers/ntlmssp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def analyse(session: Session, layer: BaseLayer):
3535
current_creds = session.credentials_being_built
3636

3737
if current_creds and hasattr(layer, "nt_status"):
38-
status = int(layer.nt_status)
38+
status = int(layer.nt_status, 16)
3939

4040
if status == 0: # LOGON SUCCESS
4141
logger.found(session, "{} found: {}".format(current_creds.context["version"], current_creds.hash))

0 commit comments

Comments
 (0)