mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 13:23:02 +01:00
add routersploit
This commit is contained in:
@@ -85,6 +85,7 @@ dockerfiles
|
|||||||
- [x] pure-ftpd
|
- [x] pure-ftpd
|
||||||
- [x] redis-arm
|
- [x] redis-arm
|
||||||
- [x] revive
|
- [x] revive
|
||||||
|
- [x] routersploit
|
||||||
- [x] rsyncd
|
- [x] rsyncd
|
||||||
- [x] rtmp
|
- [x] rtmp
|
||||||
- [x] samba :+1:
|
- [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.
|
||||||
Reference in New Issue
Block a user