IBinProperty Type
Represents an interface for accessing the basic properties of a binary file.
Instance members
| Instance member |
Description
|
Full Usage:
this.IsBaseRelative
Returns: bool
Modifiers: abstract |
Is this binary loaded at a non-fixed base, i.e., are its addresses base-relative rather than absolute? Unlike IsPIE, this is true for every format except fixed-base executables, covering shared libraries and relocatable objects.
|
Full Usage:
this.IsNXEnabled
Returns: bool
Modifiers: abstract |
Is NX enabled for this binary? (DEP enabled or not)
|
Full Usage:
this.IsPIE
Returns: bool
Modifiers: abstract |
Is this a position-independent executable (PIE)? Unlike IsBaseRelative, this covers only executables, excluding shared libraries.
|
B2R2