Skip to content

Commit

Permalink
revert all module for Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
AlessandroZ committed Jun 5, 2024
1 parent de2bc00 commit 8fcc20b
Showing 1 changed file with 18 additions and 15 deletions.
33 changes: 18 additions & 15 deletions Mac/laZagne.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,21 +200,24 @@ def runLaZagne(category_selected='all', subcategories={}, password=None, interac

# ------------------------------------------- Parse arguments -------------------------------------------

# By default, launch all modules
if len(sys.argv) == 1:
args = {
'verbose': 0,
'quiet': False,
'password': None,
'write_normal': None,
'write_json': None,
'write_all': None,
'output': '.',
'auditType': 'all'
}
else:
args = dict(parser.parse_args()._get_kwargs())
# arguments = parser.parse_args()
# # By default, launch all modules
# if len(sys.argv) == 1:
# args = {
# 'verbose': 0,
# 'quiet': False,
# 'password': None,
# 'write_normal': None,
# 'write_json': None,
# 'write_all': None,
# 'output': '.',
# 'auditType': 'all'
# }
# else:
# args = dict(parser.parse_args()._get_kwargs())
# # arguments = parser.parse_args()

args = dict(parser.parse_args()._get_kwargs())
arguments = parser.parse_args()

# Define constant variables
output(
Expand Down

0 comments on commit 8fcc20b

Please sign in to comment.