Agent: split up nt and lm hash credential types

This commit is contained in:
vakarisz 2022-02-15 18:33:04 +02:00
parent d392de4a02
commit 26806392ec
1 changed files with 2 additions and 1 deletions

View File

@ -4,4 +4,5 @@ from enum import Enum
class CredentialType(Enum):
USERNAME = 2
PASSWORD = 3
NTLM_HASH = 4
NT_HASH = 4
LM_HASH = 5