You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We came across an executable in which the plthook_open_by_handle() fails as dlsym() can't find the __INIT_ARRAY__ and _end symbols. The _end symbol
seems to be local in the file:
micha ~/temp/plthook $ nm -CD example | egrep -w "__INIT_ARRAY__|_end"
0111ab6c b _end
It might be because this is executable was extracted from a UPX packed
executable. Unlike _end the _start symbol is exported:
001b3d48 T _start
We currently added a call to dlsym(hndl, "_start") in order to make it
work.
The text was updated successfully, but these errors were encountered:
We came across an executable in which the
plthook_open_by_handle()
fails asdlsym()
can't find the__INIT_ARRAY__
and_end
symbols. The_end
symbolseems to be local in the file:
It might be because this is executable was extracted from a UPX packed
executable. Unlike
_end
the_start
symbol is exported:We currently added a call to
dlsym(hndl, "_start")
in order to make itwork.
The text was updated successfully, but these errors were encountered: