From 71b2cd8ab9fb1b7a784cf38005d3cb0bc3231b92 Mon Sep 17 00:00:00 2001 From: Michael Scalzetti Date: Mon, 18 Jul 2022 16:23:09 -0400 Subject: [PATCH] cleaned up and commented code; added routersploit --- Dockerfile | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0712046..d5e131f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,21 @@ FROM debian:latest -RUN apt-get update && apt-get install -y curl wget gnupg2 +RUN apt-get update && apt-get install -y curl wget gnupg2 git python3 python3-pip + + +# Install metasploit +RUN mkdir -p /metasploit +WORKDIR /metasploit RUN curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && \ chmod +x ./msfinstall &&\ ./msfinstall && \ - rm ./msfinstall + rm -rf /msfinstall -RUN useradd nroot && usermod --shell /bin/bash nroot +# Install routersploit +RUN git clone https://www.github.com/threat9/routersploit /routersploit +WORKDIR /routersploit +RUN python3 -m pip install -r requirements.txt + +WORKDIR / +RUN useradd -m -s /bin/bash nroot