-
Notifications
You must be signed in to change notification settings - Fork 807
1695 parsing mimikatz #1731
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
1695 parsing mimikatz #1731
Conversation
* Leftover from broken info gathering package
No system info telemetries need to be processed anymore
b9cbfde
to
40fe08b
Compare
Island: rename credentials_type.py
40fe08b
to
8c90a98
Compare
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.
Approved with minor comments.
IDENTITY_PROCESSORS[identity["credential_type"]](identity) | ||
for secret in credential["secrets"]: | ||
SECRET_PROCESSORS[secret["credential_type"]](secret) |
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.
Since we don't make any distinction between secrets and identities in CredentialComponentType
, I'm not sure if there's value in making that distinction here. Similarly, I'm not sure we need to separate the processors into identities/
and secrets/
directories.
TelemCategoryEnum.CREDENTIALS: parse_credentials, | ||
TelemCategoryEnum.TUNNEL: process_tunnel_telemetry, | ||
TelemCategoryEnum.STATE: process_state_telemetry, | ||
TelemCategoryEnum.EXPLOIT: process_exploit_telemetry, | ||
TelemCategoryEnum.SCAN: process_scan_telemetry, | ||
TelemCategoryEnum.SYSTEM_INFO: process_system_info_telemetry, | ||
TelemCategoryEnum.POST_BREACH: process_post_breach_telemetry, | ||
TelemCategoryEnum.AWS_INFO: process_aws_telemetry, |
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.
While we're here, can we put these in alphabetical order as per the boy scout rule?
What does this PR do?
Fixes part of #1695.
Add any further explanations here.
PR Checklist
Testing Checklist
Explain Changes
Are the commit messages enough? If not, elaborate.