Files

Kubernetes

Apply all manifests with:

kubectl apply -f https://raw.githubusercontent.com/BlessedRebuS/Krawl/refs/heads/main/kubernetes/krawl-all-in-one-deploy.yaml

Or clone the repo and apply the manifest:

kubectl apply -f kubernetes/krawl-all-in-one-deploy.yaml

Access the deception server:

kubectl get svc krawl-server -n krawl-system

Once the EXTERNAL-IP is assigned, access your deception server at http://<EXTERNAL-IP>:5000

Retrieving Dashboard Path

Check server startup logs or get the secret with

kubectl get secret krawl-server -n krawl-system \
  -o jsonpath='{.data.dashboard-path}' | base64 -d && echo

Setting Dashboard Password

To set a custom password for protected dashboard panels, create the secret.yaml manifest (see kubernetes/manifests/secret.yaml) and uncomment the KRAWL_DASHBOARD_PASSWORD env var in the deployment. If not set, a random password is auto-generated and printed in the pod logs.

From Source (Python 3.11+)

Clone the repository:

git clone https://github.com/blessedrebus/krawl.git
cd krawl/src

Run the server:

python3 server.py

Visit http://localhost:5000 and access the dashboard at http://localhost:5000/<dashboard-secret-path>