0

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?

Employed Russian
  • 199,314
  • 34
  • 295
  • 362
Garde Des Ombres
  • 173
  • 1
  • 3
  • 12

1 Answers1

2

Is there a similar method in gdb?

Yes: break *function_name.

From (gdb) help break:

Address locations begin with "*" and specify an exact address in the
program.  Example: To specify the fourth byte past the start function
"main", use "*main + 4".
Employed Russian
  • 199,314
  • 34
  • 295
  • 362