Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
routersploit
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
czos-dpend
routersploit
Commits
804db022
Commit
804db022
authored
Dec 04, 2016
by
fwkz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'masterkorp-feature/docker'
parents
b94875ca
23e35b7d
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
0 deletions
+33
-0
Dockerfile
Dockerfile
+9
-0
Makefile
Makefile
+11
-0
README.md
README.md
+6
-0
run_docker.sh
run_docker.sh
+7
-0
No files found.
Dockerfile
0 → 100644
View file @
804db022
FROM
python:2.7
WORKDIR
/routersploit
RUN
git clone https://github.com/reverse-shell/routersploit/ .
RUN
pip install
-r
requirements.txt
CMD
["python", "rsf.py"]
\ No newline at end of file
Makefile
View file @
804db022
# Makefile that aggregates common chores before commit
.PHONY
:
all clean lint lint-modules test build update run help
MODULE
=
''
all
:
lint test
...
...
@@ -18,6 +20,15 @@ lint-modules:
test
:
clean
./run_tests.sh
$(MODULE)
build
:
docker build
-t
routersploit:latest
-f
Dockerfile .
update
:
./run_docker.sh git pull
run
:
./run_docker.sh
help
:
@
echo
" clean"
@
echo
" Remove python artifacts."
...
...
README.md
View file @
804db022
...
...
@@ -46,6 +46,12 @@ It consists of various modules that aids penetration testing operations:
sudo pip install -r requirements.txt
./rsf.py
# Running on Docker
Set up docker
[
for your platform
](
https://docs.docker.com/
)
> ./run_docker.sh
# Update
Update RouterSploit Framework often. Project is under heavy development and new modules are shipped almost everyday.
...
...
run_docker.sh
0 → 100755
View file @
804db022
#!/usr/bin/env bash
if
[
-z
$1
]
;
then
docker run
-it
--net
host
--rm
routersploit
else
docker run
-it
--net
host
--rm
routersploit
$@
fi
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment