Skip to content

Commit 4dd479a

Browse files
committed
remove blank line
1 parent 95e7cdf commit 4dd479a

14 files changed

Lines changed: 0 additions & 14 deletions

nxc/modules/add-computer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ class NXCModule:
1717
description = "Adds or deletes a domain computer"
1818
supported_protocols = ["smb"]
1919

20-
2120
def options(self, context, module_options):
2221
"""
2322
add-computer: Specify add-computer to call the module using smb

nxc/modules/daclread.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ class NXCModule:
200200
description = "Read and backup the Discretionary Access Control List of objects. Be careful, this module cannot read the DACLS recursively, see more explanation in the options."
201201
supported_protocols = ["ldap"]
202202

203-
204203
def __init__(self, context=None, module_options=None):
205204
self.context = context
206205
self.module_options = module_options

nxc/modules/dump-computers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ class NXCModule:
66
description = "Dumps all computers in the domain"
77
supported_protocols = ["ldap"]
88

9-
109
def options(self, context, module_options):
1110
"""
1211
TYPE Only dump NETBIOS or FQDN instead of 'FQDN (OS Version)'

nxc/modules/enum_ca.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ class NXCModule:
2525
description = "Anonymously uses RPC endpoints to hunt for ADCS CAs"
2626
supported_protocols = ["smb"] # Example: ['smb', 'mssql']
2727

28-
2928
def __init__(self, context=None, module_options=None):
3029
self.context = context
3130
self.module_options = module_options

nxc/modules/eventlog_creds.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class NXCModule:
1414
description = "Extracting Credentials From Windows Logs (Event ID: 4688 and SYSMON)"
1515
supported_protocols = ["smb"] # Example: ['smb', 'mssql']
1616

17-
1817
def __init__(self):
1918
self.context = None
2019
self.module_options = None

nxc/modules/example_module.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ class NXCModule:
1010
description = "I do something"
1111
supported_protocols = [] # Example: ['smb', 'mssql']
1212

13-
1413
def __init__(self):
1514
self.context = None
1615
self.module_options = None

nxc/modules/exec_on_link.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ class NXCModule:
88
description = "Execute commands on a SQL Server linked server"
99
supported_protocols = ["mssql"]
1010

11-
1211
def __init__(self):
1312
self.mssql_conn = None
1413
self.context = None

nxc/modules/find-computer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ class NXCModule:
1717
description = "Finds computers in the domain via the provided text"
1818
supported_protocols = ["ldap"]
1919

20-
2120
def options(self, context, module_options):
2221
"""
2322
find-computer: Specify find-computer to call the module

nxc/modules/firefox.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ class NXCModule:
1313
description = "[REMOVED] Dump credentials from Firefox"
1414
supported_protocols = ["smb"]
1515

16-
1716
def options(self, context, module_options):
1817
"""
1918
[REMOVED] use the --dpapi flag instead of the module firefox.

nxc/modules/get-desc-users.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class NXCModule:
1414
description = "Get description of the users. May contained password"
1515
supported_protocols = ["ldap"]
1616

17-
1817
def options(self, context, module_options):
1918
"""
2019
FILTER Apply the FILTER (grep-like) (default: '')

0 commit comments

Comments
 (0)