mirror of
https://github.com/aquasecurity/kube-hunter.git
synced 2026-08-23 22:26:23 +00:00
* Remove plugins Current usage of plugins is not pluggable and includes logging stuff. Move this to conf/logging. * Removed dynamic imports * Add tests for hunters registration
32 lines
357 B
Python
32 lines
357 B
Python
from . import (
|
|
aks,
|
|
apiserver,
|
|
arp,
|
|
capabilities,
|
|
certificates,
|
|
cves,
|
|
dashboard,
|
|
dns,
|
|
etcd,
|
|
kubelet,
|
|
mounts,
|
|
proxy,
|
|
secrets,
|
|
)
|
|
|
|
__all__ = [
|
|
aks,
|
|
apiserver,
|
|
arp,
|
|
capabilities,
|
|
certificates,
|
|
cves,
|
|
dashboard,
|
|
dns,
|
|
etcd,
|
|
kubelet,
|
|
mounts,
|
|
proxy,
|
|
secrets,
|
|
]
|