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.