8000 Cleanup/CLI arguments by x4v13r64 · Pull Request #400 · nccgroup/ScoutSuite · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Cleanup/CLI arguments #400

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 8, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 5 additions & 10 deletions ScoutSuite/core/cli_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,6 @@ def _init_aws_parser(self):
default=[],
nargs='+',
help='Name of regions to run the tool in, defaults to all')
parser.add_argument('--vpc',
dest='vpc',
default=[],
nargs='+',
help='Name of VPC to run the tool in, defaults to all')
parser.add_argument('--ip-ranges',
dest='ip_ranges',
default=[],
Expand Down Expand Up @@ -185,11 +180,11 @@ def _init_common_args_parser(self):
default=False,
action='store_true',
help='Print the stack trace when exception occurs')
parser.add_argument('--resume',
dest='resume',
default=False,
action='store_true',
help='Complete a partial (throttled) run')
# parser.add_argument('--resume',
# dest='resume',
# default=False,
# action='store_true',
# help='Complete a partial (throttled) run')
parser.add_argument('--update',
dest='update',
default=False,
Expand Down
0