Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tandasat
Created June 26, 2021 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tandasat/675f1db744203aa574b4d9c866d221f5 to your computer and use it in GitHub Desktop.
Save tandasat/675f1db744203aa574b4d9c866d221f5 to your computer and use it in GitHub Desktop.
IDA script to show the first instruction of the all functions
from idautils import *
from idaapi import *
from idc import *
for funcea in Functions():
functionName = get_func_name(funcea)
for (startea, endea) in Chunks(funcea):
print(f"{startea:08x} {GetDisasm(startea)} : {functionName}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment