8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 08319f5 + acb34e8 commit 82cbfd3Copy full SHA for 82cbfd3
CHANGELOG.md
@@ -32,6 +32,8 @@
32
33
### Bug Fixes
34
35
+- binja: fix a crash during feature extraction when the MLIL is unavailable @xusheng6 #2714
36
+
37
### capa Explorer Web
38
39
### capa Explorer IDA Pro plugin
capa/features/extractors/binja/function.py
@@ -19,7 +19,6 @@
19
Function,
20
BinaryView,
21
SymbolType,
22
- ILException,
23
RegisterValueType,
24
VariableSourceType,
25
LowLevelILOperation,
@@ -192,9 +191,8 @@ def extract_stackstring(fh: FunctionHandle):
192
191
if bv is None:
193
return
194
195
- try:
196
- mlil = func.mlil
197
- except ILException:
+ mlil = func.mlil
+ if mlil is None:
198
199
200
for block in mlil.basic_blocks:
0 commit comments