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()