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.
1 parent 7e2dd89 commit 8cf5f15Copy full SHA for 8cf5f15
blint/lib/binary.py
@@ -663,7 +663,12 @@ def parse_macho_symbols(symbols):
663
"num_sections": symbol.numberof_sections,
664
"description": symbol.description,
665
"address": symbol_value,
666
- "export_info": symbol.export_info if symbol.has_export_info else None,
+ "export_info": {
667
+ "symbol": symbol.export_info.symbol, "kind": symbol.export_info.kind,
668
+ "flags": str(symbol.export_info.flags),
669
+ "offset": ADDRESS_FMT.format(symbol.export_info.offset),
670
+ "address": ADDRESS_FMT.format(symbol.export_info.address)
671
+ } if symbol.has_export_info else None,
672
"origin": symbol.origin,
673
}
674
)
0 commit comments