objdump

objdump displays information from object files and executables — most commonly disassembling machine code back to assembly. It is part of the GNU binutils package and is a common tool for static analysis and reverse engineering.

Copy/Paste
objdump -M intel --visualize-jumps=color -d <binary>

Use Intel Syntax

objdump -M intel

Display assembler contents of executable sections

objdump -d

Visualize Jumps (with color)

objdump --visualize-jumps=color

Source