|
|
|
|
|
by dozzie
2890 days ago
|
|
Sure I can remember. Checking libraries the binary uses ("why this cURL fails
on HTTPs? oh, it's linked against GnuTLS, that explains everything"),
injecting your own library, intercepting a function (maybe syscall, or rather
its libc wrapper), tracing function's execution (ltrace). All these things
merely annoy if you used to have them but now you don't and it's hard to
remember them all, but there's a lot of them. And then there's also sharing memory between different processes that use the
same library. You don't have that for a statically compiled binary. |
|