mirror of
https://github.com/vee1e/capa.git
synced 2026-09-03 03:37:26 +00:00
support more report formats
This commit is contained in:
parent
54d749e845
commit
8298347c19
2 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue