mirror of
https://github.com/aquasecurity/kube-hunter.git
synced 2026-05-24 10:02:50 +00:00
removed unnecessary Information imports
This commit is contained in:
@@ -7,6 +7,7 @@ import time
|
||||
|
||||
parser = argparse.ArgumentParser(description='Kube-Hunter, Hunter for weak Kubernetes cluster')
|
||||
parser.add_argument('--pod', action="store_true", help="set hunter as an insider pod")
|
||||
parser.add_argument('--quick', action="store_true", help="scanning only known small sections of the subnet")
|
||||
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:\nDEBUG INFO WARNING")
|
||||
|
||||
@@ -4,7 +4,7 @@ from prettytable import ALL, PrettyTable
|
||||
|
||||
from __main__ import config
|
||||
from src.core.events import handler
|
||||
from src.core.events.types import Information, Service, Vulnerability
|
||||
from src.core.events.types import Service, Vulnerability
|
||||
|
||||
services = list()
|
||||
vulnerabilities = list()
|
||||
|
||||
Reference in New Issue
Block a user