Why doesn't Ghidra identify main()
, but other disassemblers do? Any way to fix this?
#5764
Unanswered
ThiagoRangel7
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm starting to learn RE, and I noticed Ghidra doesn't identify and auto-name the
main()
function, while other disassemblers do.Take a look at the following screenshots from Ghidra and from IDA.
IDA (identifies
main()
- names it_main
with correctly named parametersint argc
andchar **argv
):Ghidra (doesn't identify
main()
- names itFUN_00401040
with parametersint param_1
andint param_2
):Is there a way to change that? For someone who's learning, it's much easier to grasp the way other disassemblers do it.
Thank you
Beta Was this translation helpful? Give feedback.
All reactions