k4rkarov / kali-docker

My customized Kali Docker image, including all the tools I consider essential for a penetration test.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Setting Up and Using the Kali-Docker Container

This guide walks you through cloning the kali-docker repository, building the Docker image using the provided Dockerfile, entering the container, and also running binaries without manually entering it.

Prerequisites

Steps

1. Clone the Repository

Run the following command to clone the kali-docker repository:

git clone https://github.com/k4rkarov/kali-docker.git

2. Build the Docker Image

Navigate to the cloned repository directory:

cd kali-docker

Build the Docker image using the provided Dockerfile:

docker build -t your_image_name:tag .

3. Run the Container

Run and enter the newly created container:

docker run -it --name your_container your_image_name:tag

4. Run Binaries Without Entering the Container

If you want to run binaries without entering the container, you can use the following command:

docker run --rm your_container binary_name binary_arguments

5. Cleanup (Optional)

If desired, you can stop and remove the container when no longer needed:

docker stop your_container
docker rm your_container

About

My customized Kali Docker image, including all the tools I consider essential for a penetration test.

License:MIT License


Languages

Language:Dockerfile 100.0%