Advertisement
joxeankoret

Untitled

Feb 16th, 2018
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. from idaapi import get_func, FlowChart
  2.  
  3. func = get_func(here())
  4. if func is not None:
  5.   chart = FlowChart(func)
  6.   name = GetFunctionName(func.startEA)
  7.   print "Basic Blocks in 0x%08x (%s) %d" % (func.startEA, name, chart.size)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement