removed unnecessary Information imports

This commit is contained in:
daniel_sagi
2018-06-12 14:31:07 +03:00
parent 73a4e83781
commit c2e089b6a5
2 changed files with 2 additions and 1 deletions

View File

@@ -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")

View File

@@ -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()