-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #168 from Shield-Cyber/dev
Version 3
- Loading branch information
Showing
38 changed files
with
1,130 additions
and
381 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ | |
v1.5.0 | ||
.env | ||
.pytest_cache | ||
.DS_Store | ||
.DS_Store | ||
v2.7.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build", | ||
"type": "shell", | ||
"command": "uvicorn /workspaces/RESTBone/app/main:app --reload", | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.11.4 | ||
FROM python:3.11.4-slim | ||
|
||
WORKDIR /opt | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
python-gvm==23.5.1 | ||
fastapi==0.100.0 | ||
python-multipart==0.0.6 | ||
uvicorn[standard]==0.22.0 | ||
uvicorn[standard]==0.23.1 | ||
passlib[bcrypt]==1.7.4 | ||
python-jose[cryptography]==3.3.0 | ||
# sqlalchemy==2.0.15 | ||
redis[hiredis]==4.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
from .authentication import ROUTER as AUTHENTICATION | ||
from .credential import ROUTER as CREDENTIAL | ||
from .version import ROUTER as VERSION | ||
from .scanner import ROUTER as SCANNER | ||
from .report import ROUTER as REPORT | ||
from .target import ROUTER as TARGET | ||
from .feed import ROUTER as FEED | ||
from .port import ROUTER as PORT | ||
from .scan import ROUTER as SCAN | ||
from .user import ROUTER as USER | ||
from .ping import ROUTER as PING | ||
from .task import ROUTER as TASK | ||
from .authentication.authentication import ROUTER as AUTHENTICATION | ||
from .credential.credential import ROUTER as CREDENTIAL | ||
from .schedule.schedule import ROUTER as SCHEDULE | ||
from .version.version import ROUTER as VERSION | ||
from .scanner.scanner import ROUTER as SCANNER | ||
from .report.report import ROUTER as REPORT | ||
from .target.target import ROUTER as TARGET | ||
from .feed.feed import ROUTER as FEED | ||
from .port.port import ROUTER as PORT | ||
from .scan.scan import ROUTER as SCAN | ||
from .user.user import ROUTER as USER | ||
from .ping.ping import ROUTER as PING | ||
from .task.task import ROUTER as TASK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from dataclasses import dataclass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.