行业解决方案
查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2023-04-25 14: 44: 00
Action name: MakeName
This command gives name/renames/deletes name for the current item.
To delete a name, simply give an empty name.
If the current item is referenced, you cannot delete its name. Even if you try, IDA will generate a dummy name.
Local name
The name is considered to be defined only in the current function.
Please note that IDA does not check the uniqueness of the local names
in the whole program. However, it does verify that the name is unique for the
function.
Include in name list
Here you can also include/remove the name from the name list.
If the name is hidden, you will not see it in names window.
Public name
You can declare a name as a public (global) name. If the current
assembler supports the "public" directive, IDA will use it.
Otherwise, the publicness of the name will be displayed as a comment.
Autogenerated name
An autogenerated name will appear in a different color.
if the item is indefined, it will disappear automatically .
Weak name
You can declare a name as a weak name. If the current
assembler supports the "weak" directive, IDA will use it.
Otherwise, the weakness of the name will be displayed as a comment.
Create name anyway
If this flag is on, and if the specified name already exists,
IDA will try to variate the specified name by appending a suffix to it.
See also
Edit submenu.
How to Enter an Identifier.
Names representation.
中文翻译:
name:MakeName
此命令为当前项指定名称/重命名/删除名称。
要删除名称,只需指定一个空名称。
如果当前项被引用,则无法删除其名称。即使是youtry,IDA也会生成一个伪名称。
本地名称该名称被认为只在当前函数中定义。
请注意,IDA不会在整个程序中检查本地名称的唯一性。但是,它确实验证了该名称对于函数是唯一的。
包括在名称列表中在这里,您也可以从名称列表中包括/删除该名称。如果名称被隐藏,您将不会在名称窗口中看到它。
公共名称您可以将名称声明为公共(全局)名称。如果当前汇编程序支持“public”指令,IDA将使用它。否则,名称的公共性将显示为注释。
自动生成的名称自动生成的姓名将以不同的颜色显示。如果项目未定义,它将自动消失。
弱名称您可以将名称声明为弱名称。如果当前
汇编程序支持“弱”指令,IDA将使用它。
否则,名称的弱将显示为注释。
无论如何都要创建名称。如果此标志处于启用状态,并且指定的名称已经存在,IDA会尝试通过在指定名称后加后缀来改变指定名称。
另请参阅编辑子菜单。如何输入标识符。名称表示。
展开阅读全文
︾
读者也喜欢这些内容:
IDA分析dsp怎么选处理器模块 IDA分析dsp反汇编全是数据段怎么处理
用IDA分析DSP时,处理器模块选错会直接把指令当成数据,反汇编窗口看起来就像整段都是字节数组。更麻烦的是,你一旦在错误模块下做了大量标注与重命名,后面再换模块会发现视图和引用关系全变了。正确做法是先把处理器模块与装载口径选对,再让IDA完成一次稳定的自动分析,然后再进入深挖。...
阅读全文 >
IDA Pro如何批量分析文件 IDA Pro自动化脚本怎么写
说起逆向工程分析工具,不少人第一个想到的就是IDA Pro。只要掌握了IDA Pro自动化的一些小技巧,比如批量处理文件、用脚本自动分析,逆向工作的效率就会蹭蹭往上涨。这篇文章我就给大家聊聊IDA Pro如何批量分析文件 IDA Pro自动化脚本怎么写。...
阅读全文 >
IDA Pro如何提高逆向工程效率 IDA Pro怎么用API进行定制开发
大家好呀!今天咱们聊一聊IDA Pro这款神器工具,看看它怎么帮我们提升逆向工程效率,还有它的API又是怎么给我们提供定制开发的空间。IDA Pro是很多做安全研究和逆向工程的朋友的必备工具,功能强大得让人咋舌。不管你是新手小白,还是已经有一定经验的逆向工程大佬,相信今天这篇文章一定能帮你更好地理解IDA Pro如何提高逆向工程效率 IDA Pro怎么用API进行定制开发。...
阅读全文 >
ida伪代码是什么语言 如何看懂ida伪c代码
在软件逆向工程里,IDA 这款工具特别有名。它可以帮我们把机器码变成更容易理解的代码。很多人觉得直接看汇编代码太难,于是 IDA 提供了伪代码功能,能把这些机器码“翻译”成像 C 语言那样的代码,方便我们理解。所以,今天我们就来聊聊“ida伪代码是什么语言 如何看懂ida伪c代码”这个问题,希望能让你对IDA伪代码有更清晰的认识。...
阅读全文 >