fariss
fariss
User custom exception hooks set via `sys.excepthook = ` are not executed in Ghidrathon. Though, this functionally works as intended in the builtin interpreter. See https://github.com/mandiant/Ghidrathon/pull/101#issuecomment-2081513188 To repoduce this issue:...
This PR closes #66. My main concern here is that the exception handler `log_env_details` will get executed for every `Exception`. Do you suggest we whitelist some exceptions?
Closes #857. This commit introduces two new metadata fields to result_document. Would this be considered a breaking change? This would require regenrating the rdoc test files. see https://github.com/mandiant/capa-testfiles/pull/239. ### Checklist...
Closes #1898. This is a proposal for the issue discussed in #1898. Let's test out its feasibility and make sure it does not introduce an overhead.
bump rdoc 0000a657 to version 7.0.1
related to https://github.com/mandiant/capa/pull/2134/.
Follow up on https://github.com/mandiant/capa/issues/989. Marking this as a draft, because I believe we should a test for this function. @mr-tz @williballenthin let me know if you have a test binary,...
To allow quick feedback from others, it would be really helpful to have a preview deployment of a pull request so others do not need to build it on their...
Python offers native methods for string-byte conversion, eliminating the need for binascii. We should replace `binascii.hexlify()` with `bytes.hex()` and `binascii.unhexlify()` with `bytes.fromhex()`. https://docs.python.org/3/library/stdtypes.html#bytes.hex also consider, replacing `struct.pack` / `stuct.unpack()` with...
### Describe the bug Using `TreeTable`, I am implementing a feature where a node toggle event will expand the **parent** node, as well as the **first child** node and keeps...