Home
Overloaded function.
is_pe(filename: str) -> bool
Check if the given file is a PE
(from filename)
is_pe(raw: List[int]) -> bool
Check if the given raw data is a PE
Overloaded function.
is_elf(filename: str) -> bool
Check if the given file is an ELF
is_elf(raw: List[int]) -> bool
Check if the given raw data is an ELF
Overloaded function.
is_macho(filename: str) -> bool
Check if the given file is a MachO
(from filename)
is_macho(raw: List[int]) -> bool
Check if the given raw data is a MachO
Overloaded function.
is_oat(filename: str) -> bool
Check if the given file is an OAT
(from filename)
is_oat(raw: List[int]) -> bool
Check if the given raw data is an OAT
is_oat(elf: lief._lief.ELF.Binary) -> bool
Check if the given Binary
is an OAT
Overloaded function.
oat_version(filename: str) -> int
Return the OAT version of the given file
oat_version(raw: List[int]) -> int
Return the OAT version of the raw data
oat_version(elf: lief._lief.ELF.Binary) -> int
Return the OAT version of the given Binary
Overloaded function.
is_dex(filename: str) -> bool
Check if the given file is a DEX
(from filename)
is_dex(raw: List[int]) -> bool
Check if the given raw data is a DEX
Overloaded function.
dex_version(filename: str) -> int
Return the OAT version of the given file
dex_version(raw: List[int]) -> int
Return the DEX version of the raw data
Overloaded function.
is_vdex(filename: str) -> bool
Check if the given file is a VDEX
(from filename)
is_vdex(raw: List[int]) -> bool
Check if the given raw data is a VDEX
Overloaded function.
vdex_version(filename: str) -> int
Return the VDEX version of the given file
vdex_version(raw: List[int]) -> int
Return the VDEX version of the raw data
Overloaded function.
is_art(filename: str) -> bool
Check if the given file is an ART
(from filename)
is_art(raw: List[int]) -> bool
Check if the given raw data is an ART
Overloaded function.
art_version(filename: str) -> int
Return the ART version of the given file
art_version(raw: List[int]) -> int
Return the ART version of the raw data
Drop into an IPython Interpreter
Trigger ‘pdb.set_trace()’