mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-21 01:27:01 +02:00
add routersploit
This commit is contained in:
parent
6d65a8feea
commit
5f527a2732
@ -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
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"]
|
31
routersploit/Dockerfile.arm
Normal file
31
routersploit/Dockerfile.arm
Normal file
@ -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
4
routersploit/README.md
Normal file
@ -0,0 +1,4 @@
|
||||
routersploit
|
||||
============
|
||||
|
||||
The Router Exploitation Framework.
|
Loading…
Reference in New Issue
Block a user