-
Notifications
You must be signed in to change notification settings - Fork 528
[crowdstrike] Add function to import malware families (#2003) #5223
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
base: feat/4649-crowdstrike-improve-connector-and-data-modeling
Are you sure you want to change the base?
[crowdstrike] Add function to import malware families (#2003) #5223
Conversation
…ieval of the malware families
…on, like stix or formating
…he main flow/orchestration
…ass instead of sector
| """Create the main Malware entity.""" | ||
| description = self._get_description() | ||
| external_references = self._create_external_references() | ||
| capabilities = self._get_capabilities() |
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.
Can we comment on this part of the code for now, for two reasons:
- There seems to be a problem when parsing this field:
- In my opinion, the "Crowdstrike" field does not correspond to our "capabilities" field but rather to the "malware_type" field.
@CTIBurn0ut : What's your opinion ?
| created_by=self.author, | ||
| is_family=True, | ||
| description=description, | ||
| capabilities=capabilities, |
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.
As we have information about the "kill chain phases" associated to the malware in CrowdStrike response, can we associate kill chain to the malware when creating it like we do here: https://github.com/OpenCTI-Platform/connectors/blob/master/external-import/crowdstrike/src/crowdstrike_feeds_connector/indicator/builder.py#L468
Proposed changes
As stated in the issue #2003 we add a way to retrieve the malware families.
Tests have been added for that new feature.
Before:
No way to directly retrieve malware
After:



Related issues
Checklist
Further comments