mirror of
https://github.com/aquasecurity/kube-hunter.git
synced 2026-02-14 09:59:55 +00:00
Fix linting issues with flake8 and black. Add pre-commit congifuration, update documnetation for it. Apply linting check in Travis CI.
58 lines
2.0 KiB
Python
58 lines
2.0 KiB
Python
from argparse import ArgumentParser
|
|
|
|
|
|
def parse_args():
|
|
parser = ArgumentParser(description="kube-hunter - hunt for security weaknesses in Kubernetes clusters")
|
|
|
|
parser.add_argument(
|
|
"--list", action="store_true", help="Displays all tests in kubehunter (add --active flag to see active tests)",
|
|
)
|
|
|
|
parser.add_argument("--interface", action="store_true", help="Set hunting on all network interfaces")
|
|
|
|
parser.add_argument("--pod", action="store_true", help="Set hunter as an insider pod")
|
|
|
|
parser.add_argument("--quick", action="store_true", help="Prefer quick scan (subnet 24)")
|
|
|
|
parser.add_argument(
|
|
"--include-patched-versions", action="store_true", help="Don't skip patched versions when scanning",
|
|
)
|
|
|
|
parser.add_argument("--cidr", type=str, help="Set an ip range to scan, example: 192.168.0.0/16")
|
|
parser.add_argument(
|
|
"--mapping", action="store_true", help="Outputs only a mapping of the cluster's nodes",
|
|
)
|
|
|
|
parser.add_argument(
|
|
"--remote", nargs="+", metavar="HOST", default=list(), help="One or more remote ip/dns to hunt",
|
|
)
|
|
|
|
parser.add_argument("--active", action="store_true", help="Enables active hunting")
|
|
|
|
parser.add_argument(
|
|
"--log",
|
|
type=str,
|
|
metavar="LOGLEVEL",
|
|
default="INFO",
|
|
help="Set log level, options are: debug, info, warn, none",
|
|
)
|
|
|
|
parser.add_argument(
|
|
"--report", type=str, default="plain", help="Set report type, options are: plain, yaml, json",
|
|
)
|
|
|
|
parser.add_argument(
|
|
"--dispatch",
|
|
type=str,
|
|
default="stdout",
|
|
help="Where to send the report to, options are: "
|
|
"stdout, http (set KUBEHUNTER_HTTP_DISPATCH_URL and "
|
|
"KUBEHUNTER_HTTP_DISPATCH_METHOD environment variables to configure)",
|
|
)
|
|
|
|
parser.add_argument("--statistics", action="store_true", help="Show hunting statistics")
|
|
|
|
parser.add_argument("--network-timeout", type=float, default=5.0, help="network operations timeout")
|
|
|
|
return parser.parse_args()
|