From af574f2cbb95d47f312ce42629a013503b81fe6a Mon Sep 17 00:00:00 2001 From: Christian Koep Date: Mon, 25 Apr 2016 19:19:26 +0200 Subject: [PATCH] RouterSploit - Router Exploitation Framework See https://github.com/reverse-shell/routersploit --- routersploit/Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 routersploit/Dockerfile diff --git a/routersploit/Dockerfile b/routersploit/Dockerfile new file mode 100644 index 0000000..4b15681 --- /dev/null +++ b/routersploit/Dockerfile @@ -0,0 +1,16 @@ +FROM debian:sid +MAINTAINER Christian Koep + +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" ]