Skip to content

Commit

Permalink
support more report formats
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-tz authored and williballenthin committed May 7, 2024
1 parent 54d749e commit 8298347
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
- do some imports closer to where they are used #1810 @williballenthin
- binja: fix and simplify stack string detection code after binja 4.0 @xusheng6
- binja: add support for forwarded export #1646 @xusheng6
- cape: support more report formats #2035 @mr-tz


### capa explorer IDA Pro plugin
Expand Down
4 changes: 2 additions & 2 deletions capa/features/extractors/cape/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ class File(FlexibleModel):
sha1: str
sha256: str
sha512: str
sha3_384: str
sha3_384: Optional[str] = None
ssdeep: str
# unsure why this would ever be "False"
tlsh: Optional[Union[str, bool]] = None
Expand Down Expand Up @@ -398,7 +398,7 @@ class CapeReport(FlexibleModel):
behavior: Behavior

# post-processed results: payloads and extracted configs
CAPE: Optional[Cape] = None
CAPE: Optional[Union[Cape, List]] = None
dropped: Optional[List[File]] = None
procdump: Optional[List[ProcessFile]] = None
procmemory: ListTODO
Expand Down

0 comments on commit 8298347

Please sign in to comment.