RouterSploit - Router Exploitation Framework

See https://github.com/reverse-shell/routersploit
This commit is contained in:
Christian Koep 2016-04-25 19:19:26 +02:00
parent 7491824155
commit af574f2cbb
No known key found for this signature in database
GPG Key ID: 889970BE12955732

16
routersploit/Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM debian:sid
MAINTAINER Christian Koep <christian.koep@fom-net.de>
RUN apt-get update && apt-get install -y \
git \
python-requests \
python-paramiko \
python-netsnmp \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& git clone https://github.com/reverse-shell/routersploit /usr/bin/routersploit \
&& apt-get purge -y --auto-remove \
git
WORKDIR "/usr/bin/routersploit/"
ENTRYPOINT [ "./rsf.py" ]