Skip to content

Commit

Permalink
vmray: remove and document extract_call_features comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-hunhoff committed Jul 17, 2024
1 parent ec7e431 commit cc87ef3
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions capa/features/extractors/vmray/call.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,6 @@ def extract_call_features(ph: ProcessHandle, th: ThreadHandle, ch: CallHandle) -
for param in call.params_in.params:
yield from get_call_param_features(param, ch)

"""
# TODO (meh): params_out stores return value, not sure where to emit this?? https://github.com/mandiant/capa/issues/2148
if call.params_out:
for param in call.params_out.params:
yield from get_call_param_features(param, ch)
"""

yield API(call.name), ch.address


Expand Down

0 comments on commit cc87ef3

Please sign in to comment.