Skip to content

Commit

Permalink
Bump v3.0.0 (threat9#385)
Browse files Browse the repository at this point in the history
* Bump v3.0.0

* Adding Slack invitation link
  • Loading branch information
lucyoa authored May 6, 2018
1 parent 8a04b08 commit 9380c04
Show file tree
Hide file tree
Showing 676 changed files with 39,461 additions and 11,981 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
Expand All @@ -45,6 +44,7 @@ htmlcov/
.coverage
.coverage.*
.cache
.pytest_cache
nosetests.xml
coverage.xml
*,cover
Expand All @@ -71,3 +71,7 @@ venv/
# macOS
.DS_Store
.DS_Store?

# vim
*.swp
*.swo
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .travis/install.sh

This file was deleted.

13 changes: 0 additions & 13 deletions .travis/run.sh

This file was deleted.

2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@ It is hard to test modules in all possible scenarios. If you would like to help:
1. Check what device you have - identify vendor and version.
2. Check if routersploit contains exploits for the device you posses.
3. If exploit does not work but it should, check "show info" for more information. References should provide you with links to proof of concept exploits.

Example:
```
References:
- https://www.exploit-db.com/exploits/24975/
```

4. Try to use proof of concept exploit and check if it works properly. If it does, feel free to create new issue bug with explanation that the routersploit's module does not work properly.

## Development
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM python:2.7
FROM python:3.6

COPY requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
RUN python -m pip install -r /tmp/requirements.txt

WORKDIR /routersploit
COPY . .

CMD ["python", "rsf.py"]
CMD ["python", "rsf.py"]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ run:
docker run -it --rm $(RSF_IMAGE)

lint:
flake8 --exclude=__init__.py --ignore=$(FLAKE8_IGNORED_RULES) tests $(MODULES)
flake8 --exclude=__init__.py --ignore=$(FLAKE8_IGNORED_RULES) $(MODULES)

tests: clean
ifeq ($(MODULES), routersploit)
Expand Down
Loading

0 comments on commit 9380c04

Please sign in to comment.