Experimental appliance for Kali Linux CLI only

This commit is contained in:
Julien Duponchelle 2017-03-31 11:24:08 +02:00
parent 651a1bb551
commit 449d0f0c20
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8
3 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{
"name": "Kali Linux",
"category": "guest",
"description": "From the creators of BackTrack comes Kali Linux, the most advanced and versatile penetration testing platform ever created. We have a set of amazing features lined up in our security distribution geared at streamlining the penetration testing experience. This version has no GUI.Include packages:\n* nmap\n* metasploit\n* sqlmap\n* hydra\n* telnet client\n* dnsutils (dig)",
"vendor_name": "Kali Linux",
"vendor_url": "https://www.kali.org/",
"documentation_url": "https://www.kali.org/kali-linux-documentation/",
"product_name": "Kali Linux",
"registry_version": 1,
"status": "stable",
"maintainer": "GNS3 Team",
"maintainer_email": "developers@gns3.net",
"docker": {
"adapters": 2,
"image": "gns3/kalilinux:latest"
}
}

View File

@ -0,0 +1,6 @@
FROM kalilinux/kali-linux-docker
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y --no-install-recommends metasploit-framework nmap hydra sqlmap telnet openssh-client dnsutils \
&& rm -rf /var/lib/apt/lists/*
CMD /bin/bash

View File

@ -0,0 +1,21 @@
# Kali Linux
A kali linux console version for GNS3
The image include:
* nmap
* metasploit
* sqlmap
* hydra
* telnet client
* dnsutils (dig)
## Build and publish the Images
First the base image has to be created:
```
docker build -t gns3/kalilinux .
docker push gns3/kalilinux (optional)
```