Kitelon is an open-source pentest suite, with web front-end, database support (PostgreSQL) and more
324
Kitelon is an open-source security automation platform for authorized reconnaissance, vulnerability scanning, and reporting. It orchestrates tools like nmap, httpx, nuclei, subfinder, testssl.sh, and others through a CLI-first workflow with workspace-based loot, a PostgreSQL job queue, and a local Web UI.
Source code: github.com/jonsjava/kitelon
Authorized use only. Scan systems you own or are explicitly permitted to test. See the repo's LEGAL.md.
| Tag | Description |
|---|---|
latest | Most recent release build |
v0.3.9, v0.3.8, … | Pinned version (recommended for reproducibility) |
weekly-YYYY-MM-DD | Weekly rebuild with base image updates |
docker pull jonsjava/kitelon:latest
# Help / one-off scan (needs raw sockets for nmap etc.)
docker run -it --rm \
--cap-add=NET_RAW --cap-add=NET_ADMIN \
jonsjava/kitelon:latest help
docker run -it --rm \
--cap-add=NET_RAW --cap-add=NET_ADMIN \
jonsjava/kitelon:latest \
kitelon -t scanme.nmap.org -w demo
Clone the repo and use Compose (recommended for persistent loot, jobs, and the Web UI):
git clone https://github.com/jonsjava/kitelon.git
cd kitelon
cp docker/env.example .env # set POSTGRES_PASSWORD
docker compose up -d
# Web UI → http://127.0.0.1:8080
Loot and logs persist in Docker volumes. See README — Docker for profiles, env vars, and scan examples.
kitelon (scans), kitelon-cli (interactive console)MIT — LICENSE.md
Content type
Image
Digest
sha256:cfb9dbca0…
Size
3 GB
Last updated
about 10 hours ago
docker pull jonsjava/kitelon