-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/pymetasploit3 #5
Conversation
- Set WORKSPACE to Ostorlab
Please split PR to add mymeta only. |
.mypy.ini
Outdated
@@ -17,7 +17,9 @@ warn_incomplete_stub = True | |||
warn_redundant_casts = True | |||
#warn_unreachable = True | |||
warn_unused_ignores = True | |||
disallow_any_unimported = True | |||
disallow_any_unimported = False |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why?
Dockerfile
Outdated
COPY --from=builder /install /usr/local | ||
RUN python3 -m pip install -r /requirement.txt | ||
COPY tools /tools | ||
RUN pip install -e /tools/pymetasploit3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this a package vs. just adding the code and importing it?
@@ -0,0 +1,194 @@ | |||
"""Ostorlab Agent implementation for metasploit""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This code should not be in this PR.
agent/utils.py
Outdated
@@ -0,0 +1,15 @@ | |||
"""Utilities for agent Metasploit""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not in this PR.
ostorlab.yaml
Outdated
out_selectors: [] # List of output selectors. | ||
docker_file_path : Dockerfile # Dockerfile path for automated releases. | ||
docker_build_root : . # Docker build dir for automated release build. | ||
name: metasploit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not in this PR.
No description provided.