mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
3e0fc7968f
Signed-off-by: Jess Frazelle <acidburn@google.com>
20 lines
552 B
Docker
20 lines
552 B
Docker
FROM debian:sid
|
|
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" ]
|