行业解决方案查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2023-04-12 14: 31: 32
IDA did not find the specified module in:
-the current directory
-the operating system directory(see switch-W
and configuration file parameters WINDIR,OS2DIR)
OR
-the module cannot be accepted because:
-the module name(recorded in the file)doesn't match
the expected name
-the module does not contains any exported names(all exported functions
are exported by ordinal numbers)
Entries imported by ordinal entries will not be commented.If IDA finds a module,all entries that are imported by ordinal will be commented like this:
KERNEL_91:
retf;INITTASK
^^^^^^^^^
comment
This comment will be propagated(repeated)to all locations which call this entry:
call far ptr KERNEL_91;INITTASK
IDA searches all files named"modulename.*"for the module.If you know that the imported module resides in another directory,copy it to your current directory.If the module file name is different from"modulename.*",rename it.After the database is loaded,you can delete the copied module.
IDA also looks for file"modulename.ids"in the current directory in the IDS subdirectory of the directory where IDA.EXE resides in the PATHed directories
You can create such a file yourself.For an example,look at DOSCALLS.IDS in the IDS subdirectory.
中文翻译如下:
IDA没有找到指定的模块:
-当前目录
-操作系统目录(参见开关-W
和配置文件参数WINDIR,OS2DIR)
或者
-该模块不能被接受,因为:
-模块名称(记录在文件中)不匹配
预期的名字
-该模块不包含任何导出的名称(所有导出的函数
按序号导出)
由序号条目导入的条目将不会被注释。如果IDA找到一个模块,
所有按ordinal导入的条目都将像这样注释:
内核91:
退货;初始化任务
^^^^^^^^^
评论
此评论将传播(重复)给所有人
调用这个的位置
入口:
调用far ptr KERNEL_91;初始化任务
IDA在所有名为modulename.*的文件中搜索该模块。
如果您知道导入的模块位于另一个目录中,
将其复制到您的当前目录。如果模块文件名不同
来自模块名称。*,
重命名它。加载数据库后,您可以
删除复制的模块。
IDA还查找文件modulename.ids
在当前目录
IDA.EXE所在目录的IDS子目录下
在PATHed目录中
您可以自己创建这样一个文件。例如,查看DOSCALLS.IDS
在IDS子目录中。
展开阅读全文
︾
读者也喜欢这些内容:
ida反编译后有多余参数 ida使用反编译源码
当我们在使用IDA Pro软件进行反编译时,有时可能会遇到反编译后有多余参数的问题。在许多情况下,这些多余的参数可能会导致代码理解的困扰和混淆。本文将深入讨论这个问题,并提供有效的解决策略。此外,我们也将探讨如何在IDA中有效地使用反编译源码,以帮助您更好地理解和掌握反编译技术。...
阅读全文 >
IDA Pro删除隐藏范围(Del hidden range)
...
阅读全文 >
IDA pro搜索下一个可疑操作数(Search for next suspicious operand)
...
阅读全文 >
IDA Pro插件模块(Plugin modules)
...
阅读全文 >