mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
RouterSploit - Router Exploitation Framework
See https://github.com/reverse-shell/routersploit
This commit is contained in:
parent
7491824155
commit
af574f2cbb
16
routersploit/Dockerfile
Normal file
16
routersploit/Dockerfile
Normal 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" ]
|
Loading…
Reference in New Issue
Block a user