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.
我想查看使用 python 连接到任何进程的 dll。pdb可以吗?
有什么方法可以附加到一个进程或从 python 调试器打开一个进程并查看挂钩的 dll 吗?
我相信你不能用 pdb 做到这一点。您可以改用 pydbg。这是一个示例代码
import pydbg from pydbg.defines import * dbg = pydbg.pydbg() dbg.attach(pid) for modules in dbg.enumerate_modules(): print modules dbg.run()