While doing reverse engineering i always need to seek into specific functions. I used to work with radare2 with the command s <function_name>, which set a breakpoint on the first instruction of function_name.
Is there a similar method in gdb?
While doing reverse engineering i always need to seek into specific functions. I used to work with radare2 with the command s <function_name>, which set a breakpoint on the first instruction of function_name.
Is there a similar method in gdb?
Copyright © 2021 Jogjafile Inc.
Yes:
break *function_name.From
(gdb) help break: