Skip to content

Commit

Permalink
Merge pull request #145 from DedSecInside/dev
Browse files Browse the repository at this point in the history
Major Upgrade v1.3
  • Loading branch information
PSNAppz authored Oct 28, 2018
2 parents 5eb895c + 1bd1a52 commit 200861e
Show file tree
Hide file tree
Showing 37 changed files with 1,123 additions and 526 deletions.
Binary file added .DS_Store
Binary file not shown.
10 changes: 10 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[run]
omit =
*tests.py

[report]
exclude_lines =
pragma: no cover
def __repr__
raise NotImplementedError
if __name__ == .__main__.:
2 changes: 2 additions & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
repo_token: 5dQu9sYVNc28Qy8pw1CCOL8IN2ck3NIaU
service_name: travis-ci
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
name: Bug report
about: Create a report to help us improve

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature request
about: Suggest an idea for this project

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
27 changes: 23 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,28 @@
# Module Ignores
modules/*.pyc
modules/__init__.py
modules/__pycache__/
modules/.pytest_cache
modules/.ropeproject/
modules/lib/*.so

# Tests Ignores
tests/.pytest_cache
tests/*.pyc
tests/__pycache__/
tests/.ropeproject/

# Cache
.cache
*.pyc
.pytestc*
.pytest_cache
__pycache*
__pycache__/

# Misc
torBot
.*.swp
.ropeproject/
modules/.ropeproject/
tests/__pycache__/
modules/__init__.py
.idea/
tests/.ropeproject/
.DS_Store
2 changes: 2 additions & 0 deletions .hound.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
flake8:
enabled: true
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ dist: trusty
language: python
cache: pip3
python:
- "3.5"
- "3.6"
# command to install dependencies
install:
- sudo apt-get -y install python3-pip
- pip3 install -r requirements.txt
- cd tests
- cd modules/tests
script:
- pytest
notifications:
Expand Down
38 changes: 32 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,46 @@
--------------------
All notable changes to this project will be documented in this file.

## 1.2.0 | Present (Stable)
## 1.3.0 | Present

### Changed

* Major code improvements
* Updated README.md
* Updated dependencies
* Refactored TorBot

### Added

* Visualizer Module
* Download option to save Tree into different formats.
* DB module
* Installation shell script to create torBot binary
* Test for getting links that uses a Mock Object to reproduce tests without touching actual servers.
* BFS algorithm for crawling
* Documentation for functions

### Removed

* -l Live argument Removed (Enabled by default)


## 1.2.0 | Nov 16, 2017 - Oct 19, 2018

### Changed

* Major code improvements
* Pep 8 Standard
* Tests
* Library changes

### Added

* Documentation
* Save to JSON
* Testcase for Save to JSON

## 1.0.1 - July 6, 2017 - Nov 16
## 1.0.1 - July 6, 2017 - Nov 16, 2017

### Added

Expand All @@ -25,7 +51,7 @@ All notable changes to this project will be documented in this file.
* Refactored code to meet Google Style Docstrings for documentation
* Fixed error occuring while using -i flag

## 1.0.0 - Jun 28, 2017 - July 5
## 1.0.0 - Jun 28, 2017 - July 5, 2017

### Added
* Argument parser support
Expand All @@ -37,7 +63,7 @@ All notable changes to this project will be documented in this file.

* Default Live url checker

## 0.0.3 - Jun 18, 2017 - Jun 27
## 0.0.3 - Jun 18, 2017 - Jun 27, 2017

### Added

Expand All @@ -47,7 +73,7 @@ All notable changes to this project will be documented in this file.
* CODE_OF_CONDUCT
* Travis CI integration

## 0.0.2 - Jun 13, 2017 - Jun 17
## 0.0.2 - Jun 13, 2017 - Jun 17, 2017

### Added

Expand All @@ -60,7 +86,7 @@ All notable changes to this project will be documented in this file.
* Testcase for get email


## 0.0.1 - May 17, 2017 - Jun 3
## 0.0.1 - May 17, 2017 - Jun 3, 2017

### Added

Expand Down
1 change: 1 addition & 0 deletions FAQ.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
## FAQ
12 changes: 12 additions & 0 deletions PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Issue #

### Changes Proposed
-
-
-

### Explanation of Changes



### Screenshots of new feature/change
Loading

0 comments on commit 200861e

Please sign in to comment.