From 61e470df94a0236a2982cd94bf5b85249397eb5d Mon Sep 17 00:00:00 2001 From: cktricky Date: Mon, 5 Mar 2018 16:01:27 -0500 Subject: [PATCH] made a dummy list method for when CG gets the json logging going --- weirdAAL.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/weirdAAL.py b/weirdAAL.py index 164e5af..6045b5a 100755 --- a/weirdAAL.py +++ b/weirdAAL.py @@ -17,6 +17,7 @@ parser.add_argument("-s", "--step", help="list the step you would like to run", action="store", type=str, required=True) parser.add_argument("-t", "--target", help="Give your target a name so we can track results", action="store", type=str, required=True) +parser.add_argument("-l", "--list", help="list steps", action="store_true") parser.add_argument("-v", "--verbosity", help="increase output verbosity", action="store_true") args = parser.parse_args() @@ -47,6 +48,9 @@ else: print("Please supply keys as outlined in our README.md file") #exit(1) +if (args.list): + pass + # We need the user to tell us the step they want to proceed on if (args.step): arg = method_create()