Container focusing on exploit frameworks.
166
The exploit build is built off of ubuntu:latest and includes critical exploit tools:
This is a much smaller build (40% smaller) compared with others. Its purpose is to integrate with a larger security suite of tools. This is currently the largest container of those in the suite.
Future: Plan to add Tshark for immediate pcap investigation.
FROM ubuntu:latest RUN apt-get update && apt-get install -y wget libdigest-md4-perl libdigest-crc-perl libhtml-parser-perl build-essential RUN apt-get install -y nmap RUN wget https://downloads.metasploit.com/data/releases/metasploit-latest-linux-x64-installer.run --no-check-certificate RUN wget https://downloads.metasploit.com/data/releases/metasploit-latest-linux-x64-installer.run.sha1 --no-check-certificate RUN echo $(cat metasploit-latest-linux-x64-installer.run.sha1)' 'metasploit-latest-linux-x64-installer.run > metasploit-latest-linux-x64-installer.run.sha1 RUN shasum -c metasploit-latest-linux-x64-installer.run.sha1 RUN chmod +x ./metasploit-latest-linux-x64-installer.run RUN sudo ./metasploit-latest-linux-x64-installer.runLABEL version="1.0" LABEL name="exploit" LABEL description="Container for intercepting packets and exploits. Included tool(s): Metasploit framework, Nmap" LABEL purpose="Part of the Docky Security Operations suite." LABEL project="Created for IT4750 at UVU" LABEL owner="Dillon Torgersen" LABEL maintainer="[email protected]"
Content type
Image
Digest
Size
330.6 MB
Last updated
over 9 years ago
docker pull dillont86/exploit:version2