-
Notifications
You must be signed in to change notification settings - Fork 795
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
Modify ExploiterResultData #1728
Merged
shreyamalviya
merged 12 commits into
agent-refactor
from
1605-modify-exploit-result-data
Feb 22, 2022
Merged
Changes from 7 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
8d0fa3f
Agent: Modify ExploiterResultData to have more details
shreyamalviya add9c3a
Agent: Modify mock puppet to conform to modified ExploiterResultData
shreyamalviya ae85638
UT: Modify UTs to conform to modified ExploiterResultData
shreyamalviya 9f01aa0
Agent: Add try/except for importing pwd (can't do it on Windows)
shreyamalviya a9e000f
Agent: Modify ExploitTelem based on ExploiterResultData changes
shreyamalviya 125412e
Agent: Rename variables to make more sense
shreyamalviya 1cce742
UT: Fix UTs as per changes to ExploiterResultData and ExploitTelem
shreyamalviya afb7210
Agent: Modify ExploitTelem to accept param of type ExploiterResultData
shreyamalviya dff5bde
UT: Modify ExploitTelem calls in UTs
shreyamalviya e47239f
Island: Modify exploit telemetry processing to conform to changes to …
shreyamalviya f0679eb
Agent: Move `pwd`'s import statement to avoid using try/except
shreyamalviya b91f3b1
Agent: Fix comment in ExploitTelem
shreyamalviya File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
6 changes: 5 additions & 1 deletion
6
monkey/infection_monkey/credential_collectors/ssh_collector/ssh_handler.py
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
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 |
---|---|---|
|
@@ -101,20 +101,44 @@ def _fingerprint(self): | |
|
||
def _exploit(self): | ||
logger.info("Exploiting victims") | ||
result, info, attempts, error_message = self._puppet.exploit_host( | ||
"PowerShellExploiter", "10.0.0.1", {}, None | ||
) | ||
( | ||
exploitation_result, | ||
propagation_result, | ||
os, | ||
info, | ||
attempts, | ||
error_message, | ||
) = self._puppet.exploit_host("PowerShellExploiter", "10.0.0.1", {}, None) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of unpacking this, let's modify |
||
logger.info(f"Attempts for exploiting {attempts}") | ||
self._telemetry_messenger.send_telemetry( | ||
ExploitTelem("PowerShellExploiter", self._hosts["10.0.0.1"], result, info, attempts) | ||
ExploitTelem( | ||
"PowerShellExploiter", | ||
self._hosts["10.0.0.1"], | ||
exploitation_result, | ||
propagation_result, | ||
info, | ||
attempts, | ||
) | ||
) | ||
|
||
result, info, attempts, error_message = self._puppet.exploit_host( | ||
"SSHExploiter", "10.0.0.3", {}, None | ||
) | ||
( | ||
exploitation_result, | ||
propagation_result, | ||
os, | ||
info, | ||
attempts, | ||
error_message, | ||
) = self._puppet.exploit_host("SSHExploiter", "10.0.0.3", {}, None) | ||
logger.info(f"Attempts for exploiting {attempts}") | ||
self._telemetry_messenger.send_telemetry( | ||
ExploitTelem("SSHExploiter", self._hosts["10.0.0.3"], result, info, attempts) | ||
ExploitTelem( | ||
"SSHExploiter", | ||
self._hosts["10.0.0.3"], | ||
exploitation_result, | ||
propagation_result, | ||
info, | ||
attempts, | ||
) | ||
) | ||
logger.info("Finished exploiting victims") | ||
|
||
|
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 is solved by Vakaris in parsing credential telemetry. Check this commit
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.
I'm going to leave this in since this'll most likely get merged before that.
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.
If we move this import to line 37, then we don't need to try/except the import, since
_get_home_dirs()
only runs if the check on line 24 passes.