3 """A tool for looking for indirect jumps and calls in x86 binaries.
5 Helpful to verify whether or not retpoline mitigations are catching
6 all of the indirect branches in a binary and telling you which
7 functions the remaining ones are in (assembly, etc).
9 Depends on llvm-objdump being in your path and is tied to the
13 from __future__
import print_function
21 # Look for indirect calls/jmps in a binary. re: (call|jmp).*\*
22 def look_for_indirect(file):
23 args
= ["llvm-objdump"]
28 args
=args
, stdin
=None, stderr
=subprocess
.PIPE
, stdout
=subprocess
.PIPE
30 (stdout
, stderr
) = p
.communicate()
33 for line
in stdout
.splitlines():
34 if not line
.startswith(" "):
36 result
= re
.search("(call|jmp).*\*", line
)
37 if result
is not None:
38 # TODO: Perhaps use cxxfilt to demangle functions?
45 # No options currently other than the binary.
46 parser
= optparse
.OptionParser("%prog [options] <binary>")
47 (opts
, args
) = parser
.parse_args(args
)
49 parser
.error("invalid number of arguments: %s" % len(args
))
50 look_for_indirect(args
[1])
53 if __name__
== "__main__":