mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
7eea00edf3
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
20 lines
560 B
Docker
20 lines
560 B
Docker
FROM debian:sid
|
|
LABEL maintainer "Christian Koep <christian.koep@fom-net.de>"
|
|
|
|
ENV ROUTERSPLOIT_VERSION v2.2.1
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
git \
|
|
python-requests \
|
|
python-paramiko \
|
|
python-pysnmp-common \
|
|
python-bs4 \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& git clone --depth 1 --branch "${ROUTERSPLOIT_VERSION}" https://github.com/reverse-shell/routersploit /usr/bin/routersploit \
|
|
&& apt-get purge -y --auto-remove \
|
|
git
|
|
|
|
WORKDIR "/usr/bin/routersploit/"
|
|
ENTRYPOINT [ "./rsf.py" ]
|