79446078

Date: 2025-02-17 16:52:56
Score: 0.5
Natty:
Report link

gdb itself can be used to extract the AT_EXECFN from a core file using the info command. For example:

$ gdb -batch -core example.corefile -q -ex 'info auxv' 2>/dev/null | sed -n 's/.*AT_EXECFN[^"]*"\(.*\)"/\1/p'

/usr/bin/example
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: NickBroon