mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
b23c2777c7
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
20 lines
563 B
Docker
20 lines
563 B
Docker
FROM debian:sid-slim
|
|
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
|
|
|
|
ENV ROUTERSPLOIT_VERSION v3.4.0
|
|
|
|
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" ]
|