mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
Merge pull request #132 from koep/routersploit
RouterSploit - Router Exploitation Framework
This commit is contained in:
commit
df992a15fb
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