34 lines
932 B
Docker
34 lines
932 B
Docker
FROM debian:latest
|
|
|
|
RUN apt-get update && apt-get install -y curl wget gnupg2 git python3 python3-pip python3-venv \
|
|
ncat nmap hydra iputils-ping iproute2
|
|
|
|
|
|
# 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 -rf /msfinstall
|
|
|
|
# Install routersploit
|
|
RUN git clone https://www.github.com/threat9/routersploit /routersploit
|
|
WORKDIR /routersploit
|
|
RUN python3 -m pip install -r requirements.txt
|
|
|
|
# Install cme
|
|
RUN python3 -m pip install pipx
|
|
RUN pipx install crackmapexec
|
|
RUN pipx ensurepath
|
|
|
|
# DL rockyou wordlist
|
|
RUN mkdir -p /wordlists
|
|
WORKDIR /wordlists
|
|
RUN curl -LOJ https://github.com/zacheller/rockyou/raw/master/rockyou.txt.tar.gz
|
|
RUN tar -xvf rockyou.txt.tar.gz
|
|
|
|
WORKDIR /
|
|
RUN useradd -m -s /bin/bash nroot
|