行业解决方案查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2023-04-23 15: 25: 11
Action name:KillSegment
This command allows you to delete a segment.
IDA will ask your the permission to disable the addresses occupied by the segment.If you allow this operation,all information about the segment will be deleted.In other words,IDA will discard the information about instructions or data,comments etc.
If you check the"disable addresses"checkbox,IDA will mark the addresses occupied by the segment as"nonexistent"in the program.You will lose*ALL*information,including byte values.
It is impossible to disassemble the content of adresses not located in any segment,therefore you must create a new segment if you want to resume the disassembly of that part of the code.
You can also edit(see below)an adjacent segment to expand it to those addresses.
IDA will ask your the permission to disable addresses occupied by the segment.If you give your permission,information about the segment will be deleted,otherwise IDA will discard information about instruction/data,comments etc,but retain byte values so that you will be able to create another segment afterwards.
To disassemble the addresses occupied by the segment,you need to create a new segment again(i.e.you cannot disassemble bytes without a segment).You can also expand another adjacent segment to these addresses.
以下为中文翻译:
name:KillSegment
此命令允许您删除分段。
IDA将请求您的权限禁用该分段占用的地址。
如果您允许此操作,则有关该分段的所有信息都将被删除。换句话说,IDA将丢弃有关指令或数据、注释等的信息。
如果选中“禁用地址”复选框,IDA会在程序中将该段占用的地址标记为“不存在”。您将丢失*ALL*信息,包括字节值。
不可能拆解不在任何
段中的地址的内容,因此,如果你想继续分解该部分代码,你必须创建一个新的段。
你也可以编辑(见下文)相邻的段,将其扩展到这些地址。
IDA将要求你允许禁用该段占用的地址。
如果你允许,有关该段的信息将被删除,否则IDA将丢弃有关指令/数据的信息,注释等,但保留字节值,以便
以后可以创建另一个段。
要反汇编该段占用的地址,您需要再次创建新的段(即,没有段就不能反汇编字节)。您也可以将另一个相邻段扩展到这些地址。
展开阅读全文
︾
读者也喜欢这些内容:
IDA Pro添加执行轨迹(Add execution trace)
...
阅读全文 >
IDA Pro显示使用定义的外部参照图表(Display used-defined chart of xrefs)
...
阅读全文 >
反编译可以获得源代码么 反编译的代码能保存出来吗
反编译是指将已编译的程序反向转换为源代码的过程。反编译可以帮助开发人员和安全研究人员了解程序的结构和逻辑,从而进行程序分析和漏洞挖掘。但是,反编译的代码并不是完全相同的源代码,而是通过对程序的二进制代码进行逆向分析和翻译得到的近似代码。下面将详细讲解反编译的过程以及反编译的代码是否能够保存出来,帮助大家进一步了解反编译。...
阅读全文 >
IDA Pro编辑|细分子菜单(Edit|Segments submenu)
...
阅读全文 >