How to remove strings from a compiled binary (.so)

前端 未结 4 1685
野性不改
野性不改 2021-02-04 06:45

How do I remove strings from / obfuscate a compiled binary? The goal is to avoid having people read the names of the functions/methods inside.

It is a dynamic library (.

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-04 07:08

    They are unavoidable. Those strings are the means by which the loader links shared libraries at runtime.

提交回复
热议问题