diff --git a/capa/features/extractors/ida/extractor.py b/capa/features/extractors/ida/extractor.py index 63c39626..d45f0860 100644 --- a/capa/features/extractors/ida/extractor.py +++ b/capa/features/extractors/ida/extractor.py @@ -34,7 +34,7 @@ class IdaFeatureExtractor(StaticFeatureExtractor): self.global_features.extend(capa.features.extractors.ida.file.extract_file_format()) self.global_features.extend(capa.features.extractors.ida.global_.extract_os()) self.global_features.extend(capa.features.extractors.ida.global_.extract_arch()) - with open(idaapi.get_input_file_path, "rb") as f: + with open(idaapi.get_input_file_path(), "rb") as f: self.sample_hashes = SampleHashes(f.read()) def get_base_address(self):