1

在 OllyDBG 中搜索模块间呼叫和搜索名称/标签有什么区别?据我所知,搜索名称似乎只是找到程序中可能导入库的位置,而搜索模块间调用会找到对这些导入函数的所有调用的位置(这似乎仍然是同一件事对我来说,所以我一定是错的。)

4

1 回答 1

0

尽管这个问题来自 2013 年,但有些人可能仍然喜欢答案。

Intermodular calls:
= Displays Address
+ Displays Disassembly (e.g. "call <jmp.&kernel32.CreateThread>")
= Displays Destination ("Name" in Names)

Names:
= Displays Address
+ Displays Section (e.g. ".idata")
+ Displays Type (Import / Export)
= Displays Name ("Destination" in intermodular calls)
+ Allows to toggle search between "current module" and "all modules".

除此之外,它几乎是一样的。

于 2015-01-12T09:07:56.977 回答