Recategorize modules

This commit is contained in:
Alexander Neff
2025-08-16 15:52:29 -04:00
parent 4b1b9b6b69
commit 390eda3cba
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ class NXCModule:
name = "gpp_privileges"
description = "Extracts privileges assigned via GPOs and resolves SIDs via LDAP."
supported_protocols = ["smb"]
category = CATEGORY.PRIVILEGE_ESCALATION
category = CATEGORY.ENUMERATION
WELL_KNOWN_SIDS = {
"S-1-0": "Null Authority",
+1 -1
View File
@@ -10,7 +10,7 @@ class NXCModule:
name = "recent_files"
description = "Extracts recently modified files"
supported_protocols = ["smb"]
category = CATEGORY.PRIVILEGE_ESCALATION
category = CATEGORY.CREDENTIAL_DUMPING
false_positive = [".", "..", "desktop.ini", "Public", "Default", "Default User", "All Users", ".NET v4.5", ".NET v4.5 Classic"]
def options(self, context, module_options):
+1 -1
View File
@@ -9,7 +9,7 @@ class NXCModule:
name = "uac"
description = "Checks UAC status"
supported_protocols = ["smb"]
category = CATEGORY.PRIVILEGE_ESCALATION
category = CATEGORY.ENUMERATION
def __init__(self, context=None, module_options=None):
self.context = context