行业解决方案查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2023-04-12 14: 35: 07
If "create imports section" in the file loading dialog is checked, IDA will convert .idata section definitions to "extrn" directives and truncate it so it will not contain empty lines.
Unfortunately, sometimes there is some additional data in .idata section so you'll need to disable this feature if some information is not loaded into the database.
IDA tries to detect additional data in .idata section automatically.
If you disable conversion of .idata section to a segment with "extrn" directives, you will see
somename dd ?
instead of
extrn somename directives.
Another impact is that the .idata segment will not be truncated in any way.
中文翻译如下:
如果选中文件加载对话框中的创建导入部分,
IDA 会将 .idata 段定义转换为 extrn
指令并将其截断,使其不包含空行。
不幸的是,有时 .idata 中会有一些额外的数据
部分,所以如果某些信息是您需要禁用此功能
没有加载到数据库中。
IDA 尝试自动检测 .idata 部分中的其他数据。
如果您禁止将 .idata 部分转换为带有 extrn 的段
指令,你会看到
名字 dd ?
代替
外部名称
指令。
另一个影响是 .idata 段不会以任何方式被截断。
展开阅读全文
︾