-
Notifications
You must be signed in to change notification settings - Fork 569
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scripts: add script to inspect binexport2 file
- Loading branch information
1 parent
217a9a9
commit f236ff2
Showing
1 changed file
with
327 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,327 @@ | ||
#!/usr/bin/env python | ||
""" | ||
Copyright (C) 2023 Mandiant, Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at: [package root]/LICENSE.txt | ||
Unless required by applicable law or agreed to in writing, software distributed under the License | ||
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and limitations under the License. | ||
""" | ||
import io | ||
import sys | ||
import logging | ||
import argparse | ||
import contextlib | ||
from typing import Dict, List, Iterator | ||
from collections import defaultdict | ||
|
||
import capa.main | ||
import capa.features.extractors.binexport2 | ||
from capa.features.extractors.binexport2.binexport2_pb2 import BinExport2 | ||
|
||
logger = logging.getLogger("inspect-binexport2") | ||
|
||
|
||
class Renderer: | ||
def __init__(self, o: io.StringIO): | ||
self.o = o | ||
self.indent = 0 | ||
|
||
@contextlib.contextmanager | ||
def indenting(self): | ||
self.indent += 1 | ||
try: | ||
yield | ||
finally: | ||
self.indent -= 1 | ||
|
||
def writeln(self, s): | ||
self.o.write(" " * self.indent) | ||
self.o.write(s) | ||
self.o.write("\n") | ||
|
||
@contextlib.contextmanager | ||
def section(self, name): | ||
self.writeln(name) | ||
with self.indenting(): | ||
try: | ||
yield | ||
finally: | ||
pass | ||
self.writeln("/" + name) | ||
self.writeln("") | ||
|
||
def getvalue(self): | ||
return self.o.getvalue() | ||
|
||
|
||
def main(argv=None): | ||
if argv is None: | ||
argv = sys.argv[1:] | ||
|
||
parser = argparse.ArgumentParser(description="Inspect BinExport2 files") | ||
capa.main.install_common_args(parser, wanted={"input_file"}) | ||
args = parser.parse_args(args=argv) | ||
|
||
try: | ||
capa.main.handle_common_args(args) | ||
except capa.main.ShouldExitError as e: | ||
return e.status_code | ||
|
||
o = Renderer(io.StringIO()) | ||
be2: BinExport2 = capa.features.extractors.binexport2.get_binexport2(args.input_file) | ||
|
||
with o.section("meta"): | ||
o.writeln(f"name: {be2.meta_information.executable_name}") | ||
o.writeln(f"sha256: {be2.meta_information.executable_id}") | ||
o.writeln(f"arch: {be2.meta_information.architecture_name}") | ||
o.writeln(f"ts: {be2.meta_information.timestamp}") | ||
|
||
with o.section("modules"): | ||
for module in be2.module: | ||
o.writeln(f"- {module.name}") | ||
if not be2.module: | ||
o.writeln("(none)") | ||
|
||
with o.section("sections"): | ||
for section in be2.section: | ||
perms = "" | ||
perms += "r" if section.flag_r else "-" | ||
perms += "w" if section.flag_w else "-" | ||
perms += "x" if section.flag_x else "-" | ||
o.writeln(f"- {hex(section.address)} {perms} {hex(section.size)}") | ||
|
||
with o.section("libraries"): | ||
for library in be2.library: | ||
o.writeln(f"- {library.name:<12s} {'(static)' if library.is_static else ''} at {hex(library.load_address)}") | ||
if not be2.library: | ||
o.writeln("(none)") | ||
|
||
callers_by_vertex_index: Dict[int, List[int]] = defaultdict(list) | ||
callees_by_vertex_index: Dict[int, List[int]] = defaultdict(list) | ||
|
||
for edge in be2.call_graph.edge: | ||
if not edge.source_vertex_index: | ||
continue | ||
if not edge.target_vertex_index: | ||
continue | ||
|
||
callers_by_vertex_index[edge.target_vertex_index].append(edge.source_vertex_index) | ||
callees_by_vertex_index[edge.source_vertex_index].append(edge.target_vertex_index) | ||
|
||
# note: flow graph != call graph (vertex) | ||
flow_graph_index_by_address: Dict[int, int] = {} | ||
basic_block_index_by_address: Dict[int, int] = {} | ||
basic_block_address_by_index: Dict[int, int] = {} | ||
instruction_index_by_address: Dict[int, int] = {} | ||
instruction_address_by_index: Dict[int, int] = {} | ||
|
||
instruction_address = 0 | ||
for instruction_index, instruction in enumerate(be2.instruction): | ||
if instruction.HasField("address"): | ||
instruction_address = instruction.address | ||
|
||
instruction_index_by_address[instruction_address] = instruction_index | ||
instruction_address_by_index[instruction_index] = instruction_address | ||
|
||
assert instruction.HasField("raw_bytes") | ||
instruction_address += len(instruction.raw_bytes) | ||
|
||
def instruction_indices(basic_block: BinExport2.BasicBlock) -> Iterator[int]: | ||
for index_range in basic_block.instruction_index: | ||
if not index_range.HasField("end_index"): | ||
yield index_range.begin_index | ||
continue | ||
else: | ||
yield from range(index_range.begin_index, index_range.end_index) | ||
|
||
for flow_graph_index, flow_graph in enumerate(be2.flow_graph): | ||
for basic_block_index in flow_graph.basic_block_index: | ||
basic_block = be2.basic_block[basic_block_index] | ||
for instruction_index in instruction_indices(basic_block): | ||
basic_block_address = instruction_address_by_index[instruction_index] | ||
basic_block_index_by_address[basic_block_address] = basic_block_index | ||
basic_block_address_by_index[basic_block_index] = basic_block_address | ||
|
||
entry_basic_block = be2.basic_block[flow_graph.entry_basic_block_index] | ||
entry_instruction_index = next(instruction_indices(entry_basic_block)) | ||
entry_instruction_address = instruction_address_by_index[entry_instruction_index] | ||
function_address = entry_instruction_address | ||
flow_graph_index_by_address[function_address] = flow_graph_index | ||
|
||
# edges that come from the given basic block | ||
source_edges_by_basic_block_index: Dict[int, List[BinExport2.FlowGraph.Edge]] = defaultdict(list) | ||
# edges that end up at the given basic block | ||
target_edges_by_basic_block_index: Dict[int, List[BinExport2.FlowGraph.Edge]] = defaultdict(list) | ||
|
||
for flow_graph in be2.flow_graph: | ||
for edge in flow_graph.edge: | ||
if not edge.HasField("source_basic_block_index") or not edge.HasField("target_basic_block_index"): | ||
continue | ||
|
||
source_edges_by_basic_block_index[edge.source_basic_block_index].append(edge) | ||
target_edges_by_basic_block_index[edge.target_basic_block_index].append(edge) | ||
|
||
vertex_index_by_address: Dict[int, int] = {} | ||
|
||
for vertex_index, vertex in enumerate(be2.call_graph.vertex): | ||
if not vertex.HasField("address"): | ||
continue | ||
|
||
vertex_address = vertex.address | ||
vertex_index_by_address[vertex_address] = vertex_index | ||
|
||
def get_function_name_by_vertex(be2: BinExport2, vertex_index: int) -> str: | ||
vertex = be2.call_graph.vertex[vertex_index] | ||
name = f"sub_{vertex.address:x}" | ||
if vertex.HasField("mangled_name"): | ||
name = vertex.mangled_name | ||
|
||
if vertex.HasField("demangled_name"): | ||
name = vertex.demangled_name | ||
|
||
return name | ||
|
||
def get_function_name_by_address(be2: BinExport2, address: int) -> str: | ||
if address not in vertex_index_by_address: | ||
return "" | ||
|
||
vertex_index = vertex_index_by_address[address] | ||
return get_function_name_by_vertex(be2, vertex_index) | ||
|
||
data_reference_index_by_source_instruction_index: Dict[int, List[int]] = defaultdict(list) | ||
data_reference_index_by_target_address: Dict[int, List[int]] = defaultdict(list) | ||
|
||
for data_reference_index, data_reference in enumerate(be2.data_reference): | ||
data_reference_index_by_source_instruction_index[data_reference.instruction_index].append(data_reference_index) | ||
data_reference_index_by_target_address[data_reference.address].append(data_reference_index) | ||
|
||
with o.section("functions"): | ||
for vertex_index, vertex in enumerate(be2.call_graph.vertex): | ||
if not vertex.HasField("address"): | ||
continue | ||
|
||
with o.section(f"function {get_function_name_by_vertex(be2, vertex_index)} @ {hex(vertex.address)}"): | ||
o.writeln(f"type: {vertex.Type.Name(vertex.type)}") | ||
|
||
if vertex.HasField("mangled_name"): | ||
o.writeln(f"name: {vertex.mangled_name}") | ||
|
||
if vertex.HasField("demangled_name"): | ||
o.writeln(f"demangled: {vertex.demangled_name}") | ||
|
||
if vertex.HasField("library_index"): | ||
# BUG: this seems to be incorrect | ||
library = be2.library[vertex.library_index] | ||
o.writeln(f"library: [{vertex.library_index}] {library.name}") | ||
|
||
if vertex.HasField("module_index"): | ||
module = be2.library[vertex.module_index] | ||
o.writeln(f"module: [{vertex.module_index}] {module.name}") | ||
|
||
if callees_by_vertex_index[vertex_index] or callers_by_vertex_index[vertex_index]: | ||
o.writeln("xrefs:") | ||
|
||
for caller_index in callees_by_vertex_index[vertex_index]: | ||
o.writeln(f" ← {get_function_name_by_vertex(be2, caller_index)}") | ||
|
||
for callee_index in callers_by_vertex_index[vertex_index]: | ||
o.writeln(f" → {get_function_name_by_vertex(be2, callee_index)}") | ||
|
||
if vertex.address not in flow_graph_index_by_address: | ||
o.writeln("(no flow graph)") | ||
else: | ||
flow_graph_index = flow_graph_index_by_address[vertex.address] | ||
flow_graph = be2.flow_graph[flow_graph_index] | ||
|
||
o.writeln("") | ||
for basic_block_index in flow_graph.basic_block_index: | ||
basic_block = be2.basic_block[basic_block_index] | ||
basic_block_address = basic_block_address_by_index[basic_block_index] | ||
|
||
with o.section(f"basic block {hex(basic_block_address)}"): | ||
for edge in target_edges_by_basic_block_index[basic_block_index]: | ||
if edge.type == BinExport2.FlowGraph.Edge.Type.CONDITION_FALSE: | ||
continue | ||
|
||
source_basic_block_index = edge.source_basic_block_index | ||
source_basic_block_address = basic_block_address_by_index[source_basic_block_index] | ||
|
||
o.writeln( | ||
f"↓ {BinExport2.FlowGraph.Edge.Type.Name(edge.type)} basic block {hex(source_basic_block_address)}" | ||
) | ||
|
||
for instruction_index in instruction_indices(basic_block): | ||
instruction = be2.instruction[instruction_index] | ||
instruction_address = instruction_address_by_index[instruction_index] | ||
|
||
mnemonic = be2.mnemonic[instruction.mnemonic_index] | ||
|
||
call_targets = "" | ||
if instruction.call_target: | ||
call_targets = " " | ||
for call_target_address in instruction.call_target: | ||
call_target_name = get_function_name_by_address(be2, call_target_address) | ||
call_targets += f"→ function {call_target_name} @ {hex(call_target_address)} " | ||
|
||
data_references = "" | ||
if instruction_index in data_reference_index_by_source_instruction_index: | ||
data_references = " " | ||
for data_reference_index in data_reference_index_by_source_instruction_index[ | ||
instruction_index | ||
]: | ||
data_reference = be2.data_reference[data_reference_index] | ||
data_reference_address = data_reference.address | ||
data_references += f"⇥ data {hex(data_reference_address)} " | ||
|
||
comments = "" | ||
if instruction.comment_index: | ||
comments = " " | ||
for comment_index in instruction.comment_index: | ||
comment = be2.comment[comment_index] | ||
comment_string = be2.string_table[comment.string_table_index] | ||
comments += f"; {BinExport2.Comment.Type.Name(comment.type)} {comment_string} " | ||
|
||
o.writeln( | ||
f"{hex(instruction_address)} {mnemonic.name:<12s}{call_targets}{data_references}{comments}" | ||
) | ||
|
||
does_fallthrough = False | ||
for edge in source_edges_by_basic_block_index[basic_block_index]: | ||
if edge.type == BinExport2.FlowGraph.Edge.Type.CONDITION_FALSE: | ||
does_fallthrough = True | ||
continue | ||
|
||
back_edge = "" | ||
if edge.HasField("is_back_edge") and edge.is_back_edge: | ||
back_edge = "↑" | ||
|
||
target_basic_block_index = edge.target_basic_block_index | ||
target_basic_block_address = basic_block_address_by_index[target_basic_block_index] | ||
o.writeln( | ||
f"→ {BinExport2.FlowGraph.Edge.Type.Name(edge.type)} basic block {hex(target_basic_block_address)} {back_edge}" | ||
) | ||
|
||
if does_fallthrough: | ||
o.writeln("↓ CONDITION_FALSE") | ||
|
||
with o.section("data"): | ||
for data_address in sorted(data_reference_index_by_target_address.keys()): | ||
if data_address in instruction_index_by_address: | ||
# appears to be code | ||
continue | ||
|
||
data_references = "" | ||
for data_reference_index in data_reference_index_by_target_address[data_address]: | ||
data_reference = be2.data_reference[data_reference_index] | ||
instruction_index = data_reference.instruction_index | ||
instruction_address = instruction_address_by_index[instruction_index] | ||
data_references += f"⇤ {hex(instruction_address)} " | ||
o.writeln(f"{hex(data_address)} {data_references}") | ||
|
||
print(o.getvalue()) | ||
|
||
|
||
if __name__ == "__main__": | ||
sys.exit(main()) |