行业解决方案查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2023-04-23 14: 50: 14
Action name:SelectUnionMember
This command tells IDA how to display references to a union from the current cursor location.
Example:Suppose we have the following union:
xxx union
a db?
b dw?
c dd?
ends xxx
dloc xxx?
Normally,IDA displays references to"dloc"like this:
mov al,byte ptr dloc
mov eax,word ptr dloc
After using this command,IDA can display the union members:
mov al,dloc.b
mov eax,dloc.d
以下为中文翻译:
name:SelectUnionMember
此命令告诉IDA如何从当前光标位置显示对联合的引用。
示例:假设我们有以下联合:xxx union a db?
b dw?
c日?结束xxx
dloc xxx?
通常,IDA显示对“dloc”的引用,如下所示:
mov al,byte ptr dloc
mov eax,word ptr dloc.
使用此命令后,IDA可以显示并集成员:
mov al-,dloc.b
mov eax,dloc.
展开阅读全文
︾