Skip to content

Instantly share code, notes, and snippets.

@mopsled
Last active January 18, 2016 07:25
Show Gist options
  • Save mopsled/25406c2cacef11d57b6d to your computer and use it in GitHub Desktop.
Save mopsled/25406c2cacef11d57b6d to your computer and use it in GitHub Desktop.
ea = BeginEA()
for function_start in Functions(SegStart(ea), SegEnd(ea)):
function_name = GetFunctionName(function_start)
if not function_name.startswith('sub_'):
continue
print function_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment