Skip to content

Commit 084d048

Browse files
committed
Change module categories
1 parent 7dad6d7 commit 084d048

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

nxc/modules/petitpotam.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class NXCModule:
55
name = "petitpotam"
66
description = "[REMOVED] Module to check if the DC is vulnerable to PetitPotam, credit to @topotam"
77
supported_protocols = ["smb"]
8-
category = CATEGORY.PRIVILEGE_ESCALATION
8+
category = CATEGORY.ENUMERATION
99

1010
def options(self, context, module_options):
1111
"""

nxc/modules/printerbug.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class NXCModule:
55
name = "printerbug"
66
description = "[REMOVED] Module to check if the Target is vulnerable to PrinterBug. Set LISTENER IP for coercion."
77
supported_protocols = ["smb"]
8-
category = CATEGORY.PRIVILEGE_ESCALATION
8+
category = CATEGORY.ENUMERATION
99

1010
def __init__(self, context=None, module_options=None):
1111
self.context = context

nxc/modules/printnightmare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class NXCModule:
2424
name = "printnightmare"
2525
description = "Check if host vulnerable to printnightmare"
2626
supported_protocols = ["smb"]
27-
category = CATEGORY.PRIVILEGE_ESCALATION
27+
category = CATEGORY.ENUMERATION
2828

2929
def __init__(self, context=None, module_options=None):
3030
self.context = context

nxc/modules/remove-mic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class NXCModule:
2727
name = "remove-mic"
2828
description = "Check if host vulnerable to CVE-2019-1040"
2929
supported_protocols = ["smb"]
30-
category = CATEGORY.PRIVILEGE_ESCALATION
30+
category = CATEGORY.ENUMERATION
3131

3232
def __init__(self, context=None, module_options=None):
3333
self.context = context

nxc/modules/shadowcoerce.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class NXCModule:
55
name = "shadowcoerce"
66
description = "[REMOVED] Module to check if the target is vulnerable to ShadowCoerce, credit to @Shutdown and @topotam"
77
supported_protocols = ["smb"]
8-
category = CATEGORY.PRIVILEGE_ESCALATION
8+
category = CATEGORY.ENUMERATION
99

1010
def options(self, context, module_options):
1111
"""

nxc/modules/zerologon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class NXCModule:
1515
name = "zerologon"
1616
description = "Module to check if the DC is vulnerable to Zerologon aka CVE-2020-1472"
1717
supported_protocols = ["smb", "wmi"]
18-
category = CATEGORY.PRIVILEGE_ESCALATION
18+
category = CATEGORY.ENUMERATION
1919

2020
def __init__(self, context=None, module_options=None):
2121
self.context = context

0 commit comments

Comments
 (0)