Skip to content

Commit 9bde648

Browse files
committed
Add CATEGORY enum
1 parent be20d01 commit 9bde648

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

nxc/helpers/misc.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from enum import Enum
12
import random
23
import string
34
import re
@@ -145,3 +146,9 @@ def detect_if_ip(target):
145146
return True
146147
except Exception:
147148
return False
149+
150+
151+
class CATEGORY(Enum):
152+
ENUMERATION = "Enumeration"
153+
CREDENTIAL_DUMPING = "Credential Dumping"
154+
PRIVILEGE_ESCALATION = "Privilege Escalation"

0 commit comments

Comments
 (0)