Skip to content

Commit 390eda3

Browse files
committed
Recategorize modules
1 parent 4b1b9b6 commit 390eda3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

nxc/modules/gpp_privileges.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class NXCModule:
1515
name = "gpp_privileges"
1616
description = "Extracts privileges assigned via GPOs and resolves SIDs via LDAP."
1717
supported_protocols = ["smb"]
18-
category = CATEGORY.PRIVILEGE_ESCALATION
18+
category = CATEGORY.ENUMERATION
1919

2020
WELL_KNOWN_SIDS = {
2121
"S-1-0": "Null Authority",

nxc/modules/recent_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class NXCModule:
1010
name = "recent_files"
1111
description = "Extracts recently modified files"
1212
supported_protocols = ["smb"]
13-
category = CATEGORY.PRIVILEGE_ESCALATION
13+
category = CATEGORY.CREDENTIAL_DUMPING
1414
false_positive = [".", "..", "desktop.ini", "Public", "Default", "Default User", "All Users", ".NET v4.5", ".NET v4.5 Classic"]
1515

1616
def options(self, context, module_options):

nxc/modules/uac.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class NXCModule:
99
name = "uac"
1010
description = "Checks UAC status"
1111
supported_protocols = ["smb"]
12-
category = CATEGORY.PRIVILEGE_ESCALATION
12+
category = CATEGORY.ENUMERATION
1313

1414
def __init__(self, context=None, module_options=None):
1515
self.context = context

0 commit comments

Comments
 (0)