1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-24 07:48:38 +00:00

add routersploit

This commit is contained in:
kev 2016-04-26 22:11:51 +08:00
parent 6d65a8feea
commit 5f527a2732
4 changed files with 67 additions and 0 deletions

@ -85,6 +85,7 @@ dockerfiles
- [x] pure-ftpd
- [x] redis-arm
- [x] revive
- [x] routersploit
- [x] rsyncd
- [x] rtmp
- [x] samba :+1:

31
routersploit/Dockerfile Normal file

@ -0,0 +1,31 @@
#
# Dockerfile for routersploit
#
FROM alpine
MAINTAINER EasyPi Software Foundation
WORKDIR /app
RUN set -xe \
&& apk add -U bash \
build-base \
curl \
ncurses-dev \
python \
python-dev \
readline-dev \
tar \
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python \
&& curl -sSL https://github.com/reverse-shell/routersploit/archive/master.tar.gz | tar xz --strip 1 \
&& pip install -r requirements.txt \
&& apk del bash \
build-base \
curl \
ncurses-dev \
python3-dev \
readline-dev \
tar \
&& rm -rf /var/cache/apk/*
ENTRYPOINT ["/app/rsf.py"]

@ -0,0 +1,31 @@
#
# Dockerfile for routersploit-arm
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
WORKDIR /app
RUN set -xe \
&& apk add -U bash \
build-base \
curl \
ncurses-dev \
python \
python-dev \
readline-dev \
tar \
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python \
&& curl -sSL https://github.com/reverse-shell/routersploit/archive/master.tar.gz | tar xz --strip 1 \
&& pip install -r requirements.txt \
&& apk del bash \
build-base \
curl \
ncurses-dev \
python3-dev \
readline-dev \
tar \
&& rm -rf /var/cache/apk/*
ENTRYPOINT ["/app/rsf.py"]

4
routersploit/README.md Normal file

@ -0,0 +1,4 @@
routersploit
============
The Router Exploitation Framework.