mirror of
https://github.com/aquasecurity/kube-hunter.git
synced 2026-05-11 11:47:15 +00:00
2. Changed method of hidden stacking of event, to send self as an argument, by inheriting from "Hunter" class. where the publish acts as a proxy to the handler. 3. Added new way of categorizing events, while added an option to subscribe to a father event. if en event gets publish, if its father event is hooked, the hook will be triggered 4. Added a reporter in log/ which listens to parent events, meanwhile Vulnerability and OpenService were added. all logging will be made from reporter from now on
7 lines
299 B
Python
7 lines
299 B
Python
from os.path import dirname, basename, isfile
|
|
import glob
|
|
|
|
# dynamically importing all modules in folder
|
|
files = glob.glob(dirname(__file__)+"/*.py")
|
|
for module_name in (basename(f)[:-3] for f in files if isfile(f) and not f.endswith('__init__.py')):
|
|
exec('from {} import *'.format(module_name)) |