Skip to content
/ beehive Public

Very much a WIP - A complete refactor of Tpot-CE - A full stack honeypot ecoystem running on k8s

License

Notifications You must be signed in to change notification settings

einyx/beehive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CircleCI

Honeypot stack in kubernetes

See docs for full recipe content.

This setup is similar to the Docker-compose Stack Example, but adopted to be run on a Kubernetes cluster.

There is no access control for the Kibana web interface. If you want to run this in public you need to secure your setup. The provided manifests here are for demonstration purposes only.

Honeypots

Helm Chart Repository

Local Node Setup

Start a local Kubernetes using minikube

If some webpages don't show up immediately wait a bit and reload. Also the Kubernetes Dashboard needs reloading to update its view.

minikube start --memory 4096
minikube dashboard
# maybe wait a bit and retry
kubectl get --all-namespaces services,pods

Multiple node cluster

Storage

Nfs provisioner

helm install stable/nfs-server-provisioner nfs-provisioner -n nfs

persistence: enabled: true storageClass: "-" size: 200Gi

storageClass: defaultClass: true

nodeSelector: kubernetes.io/hostname: {node-name}

In this configuration, a PersistentVolume must be created for each replica to use. Installing the Helm chart, and then inspecting the PersistentVolumeClaim's created will provide the necessary names for your PersistentVolume's to bind to.

An example of the necessary PersistentVolume:

apiVersion: v1
kind: PersistentVolume
metadata:
name: data-nfs-server-provisioner-0
spec:
capacity:
    storage: 200Gi
accessModes:
    - ReadWriteOnce
hostPath:
    path: /srv/volumes/data-nfs-server-provisioner-0
claimRef:
    namespace: nfs
    name: data-nfs-server-provisioner-0

Logging with Elasticsearch and Kibana

helm install -n bee elasticsearch .
helm install -n bee kibana .
helm install -n bee ewsposter .

To delete the whole local Kubernetes cluster use this:

minikube delete

Credits

TpotCE [githu.com/dtag-dev-sec/tpotce]

About

Very much a WIP - A complete refactor of Tpot-CE - A full stack honeypot ecoystem running on k8s

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published