Skip to content

Commit 051bc34

Browse files
committed
Add defaults and linting
1 parent 0e9d3e5 commit 051bc34

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

nxc/modules/lsassy.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ def __init__(self, context=None, module_options=None):
3333
def options(self, context, module_options):
3434
"""
3535
METHOD Method to use to dump lsass.exe with lsassy
36-
DUMP_TICKETS If set, will dump Kerberos tickets
36+
DUMP_TICKETS If set, will dump Kerberos tickets (Default: True)
3737
SAVE_DIR Directory to save dumped tickets
38-
SAVE_TYPE Type of ticket to save, either 'kirbi' or 'ccache'. Default is 'ccache'.
38+
SAVE_TYPE Type of ticket to save, either 'kirbi' or 'ccache' (Default: 'ccache')
3939
"""
4040
self.method = "comsvcs"
4141
if "METHOD" in module_options:
4242
self.method = module_options["METHOD"]
43-
43+
4444
if "DUMP_TICKETS" in module_options:
4545
self.dump_tickets = module_options["DUMP_TICKETS"].lower() in ["true"]
4646

0 commit comments

Comments
 (0)