Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用linux系统。我知道如何使用 nm 和其他 gnu binutils,但我想知道是否有更好的方法来使用 python 解析函数地址。如果有更好的方法,我不想解析来自系统调用的文本响应。
如果要调用类型相关的函数,请使用ctypes. 或者,如果您想在没有任何类型的情况下动态调用它,请使用dl
ctypes
dl
import dl dl.open("/lib/libc.so.6").call("time")
如果要获取函数符号,请使用sym.
sym