From cc87ef39d59c2963cd85120e14b76da65fdca747 Mon Sep 17 00:00:00 2001 From: Mike Hunhoff Date: Wed, 17 Jul 2024 12:18:01 -0600 Subject: [PATCH] vmray: remove and document extract_call_features comments --- capa/features/extractors/vmray/call.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/capa/features/extractors/vmray/call.py b/capa/features/extractors/vmray/call.py index 0ee43b7d3..2c39e2c4d 100644 --- a/capa/features/extractors/vmray/call.py +++ b/capa/features/extractors/vmray/call.py @@ -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