MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / BaseAddressDetectionReason

Class BaseAddressDetectionReason

python/basedetection.py:33–40  ·  view source on GitHub ↗

``class BaseAddressDetectionReason`` is a class that stores information used to understand why a base address is a candidate. It consists of a pointer, the offset of the point-of-interest that the pointer aligns with, and the type of point-of-interest (string, function, or data variable)

Source from the content-addressed store, hash-verified

31
32@dataclass
33class BaseAddressDetectionReason:
34 """``class BaseAddressDetectionReason`` is a class that stores information used to understand why a base address
35 is a candidate. It consists of a pointer, the offset of the point-of-interest that the pointer aligns with, and the
36 type of point-of-interest (string, function, or data variable)"""
37
38 pointer: int
39 offset: int
40 type: BaseAddressDetectionPOIType
41
42
43class BaseAddressDetection:

Callers 1

get_reasonsMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected