Skip to content

Commit

Permalink
Remove scapy usage (#500)
Browse files Browse the repository at this point in the history
* removed arp and dns hunters usage due to it's violations of the scapy GPL2 license

* added installation of arp and dns hunters to Dockerfile

* added explicit new version to plugins in dockerfile installation

* ignore B020 flake8
  • Loading branch information
danielsagi committed May 7, 2022
1 parent 2a70206 commit e6a3c12
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 173 deletions.
2 changes: 1 addition & 1 deletion .flake8
@@ -1,5 +1,5 @@
[flake8]
ignore = E203, E266, E501, W503, B903, T499
ignore = E203, E266, E501, W503, B903, T499, B020
max-line-length = 120
max-complexity = 18
select = B,C,E,F,W,B9,T4
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile
Expand Up @@ -26,4 +26,7 @@ RUN apk add --no-cache \
COPY --from=builder /usr/local/lib/python3.8/site-packages /usr/local/lib/python3.8/site-packages
COPY --from=builder /usr/local/bin/kube-hunter /usr/local/bin/kube-hunter

# Add default plugins: https://github.com/aquasecurity/kube-hunter-plugins
RUN pip install kube-hunter-arp-spoof>=0.0.3 kube-hunter-dns-spoof>=0.0.3

ENTRYPOINT ["kube-hunter"]
4 changes: 0 additions & 4 deletions kube_hunter/conf/logging.py
Expand Up @@ -4,10 +4,6 @@
DEFAULT_LEVEL_NAME = logging.getLevelName(DEFAULT_LEVEL)
LOG_FORMAT = "%(asctime)s %(levelname)s %(name)s %(message)s"

# Suppress logging from scapy
logging.getLogger("scapy.runtime").setLevel(logging.CRITICAL)
logging.getLogger("scapy.loading").setLevel(logging.CRITICAL)


def setup_logger(level_name, logfile):
# Remove any existing handlers
Expand Down
2 changes: 0 additions & 2 deletions kube_hunter/modules/hunting/__init__.py
Expand Up @@ -2,12 +2,10 @@
from . import (
aks,
apiserver,
arp,
capabilities,
certificates,
cves,
dashboard,
dns,
etcd,
kubelet,
mounts,
Expand Down
71 changes: 0 additions & 71 deletions kube_hunter/modules/hunting/arp.py

This file was deleted.

90 changes: 0 additions & 90 deletions kube_hunter/modules/hunting/dns.py

This file was deleted.

1 change: 0 additions & 1 deletion setup.cfg
Expand Up @@ -32,7 +32,6 @@ packages = find:
install_requires =
netaddr
netifaces
scapy>=2.4.3
requests
PrettyTable
urllib3>=1.24.3
Expand Down
4 changes: 0 additions & 4 deletions tests/core/test_handler.py
Expand Up @@ -20,14 +20,12 @@
AccessApiServerActive,
AccessApiServerWithToken,
)
from kube_hunter.modules.hunting.arp import ArpSpoofHunter
from kube_hunter.modules.hunting.capabilities import PodCapabilitiesHunter
from kube_hunter.modules.hunting.certificates import CertificateDiscovery

from kube_hunter.modules.hunting.cves import K8sClusterCveHunter
from kube_hunter.modules.hunting.cves import KubectlCVEHunter
from kube_hunter.modules.hunting.dashboard import KubeDashboard
from kube_hunter.modules.hunting.dns import DnsSpoofHunter
from kube_hunter.modules.hunting.etcd import EtcdRemoteAccess, EtcdRemoteAccessActive
from kube_hunter.modules.hunting.kubelet import (
ProveAnonymousAuth,
Expand Down Expand Up @@ -76,8 +74,6 @@
ACTIVE_HUNTERS = {
ProveAzureSpnExposure,
AccessApiServerActive,
ArpSpoofHunter,
DnsSpoofHunter,
EtcdRemoteAccessActive,
ProveRunHandler,
ProveContainerLogsHandler,
Expand Down

0 comments on commit e6a3c12

Please sign in to comment.