Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1.63 KB

File metadata and controls

36 lines (25 loc) · 1.63 KB

Lexxeous's Entry Point Disassembly:

Summary:

This is a Linux based, Python powered program that takes a list of executables, disassembles them at their entry points, outputs header information about the programs and .text sections, and informs the user if the program contains branch type instructions. Unique disassembly information is outputted to separate output files for convenience. This program is a precursor basic block binary file analysis for assembly.

The Python script takes advantage of the following packages:

  1. Capstone
  2. Pyelftools
  3. Pyinstaller

Usage:

By default, the Makefile provides a few commands to disassemble a local make and python3 distribution, as well as disassembling a compiled, executable version of entry_point.py.

Basic usage is as follows:

This is the manual way to disassemble any desired executable.

python3 entry_point.py <whitespace_separated_list_of_executable_paths>

This will disassemble a local make executable, if one exists.

make run_def

This will disassemble local make and python3 executables, if they exist, as well as the local entry_point executable in the dist/entry_point/ directory.

make run_3

See the Makefile for a few more useful commands.

Documentation:

For more information about the ELF format, please see the Linux ELF Man Page.