行业解决方案查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2023-04-11 17: 13: 29
IDA cannot change the segment start address because this segment with the new start address would overlap another adjacent segment.For example,the following situation:
seg_a starts at 0x0000 ends at 0x1000
seg_b starts at 0x1000 ends at 0x2000
seg_c starts at 0x2000 ends at 0x3000
If you ask to change seg_c so that it starts at 0x500,you'll see this error message,because the new seg_c would overlap seg_b.
Please note that the end address never belongs to the segment in IDA.
中文翻译如下:
不能移动段起始地址
IDA无法更改段起始地址,因为该段带有
新的起始地址将与另一个相邻的段重叠。例如,
以下情况:
seg_a开始于0x0000结束于0x1000
seg_b开始于0x1000结束于0x2000
seg_c开始于0x2000结束于0x3000
如果你要求改变seg_c让它从0x500开始,你会看到这个
错误消息,因为新的seg_c会与seg_b重叠。
请注意,结束地址永远不属于IDA中的段。
展开阅读全文
︾
读者也喜欢这些内容:
反汇编代码怎么看 ida如何反汇编成c语言
在计算机领域中,反汇编是一种将机器代码转换回更接近人类可理解的高级语言代码的过程。这在调试、逆向工程、病毒分析、漏洞挖掘等场景中具有重要的应用价值。而IDA作为最知名的反汇编工具,其功能强大、使用广泛。本文将围绕反汇编代码怎么看与IDA如何反汇编成C语言这两个主题进行深入探讨。...
阅读全文 >
IDA pro搜索下一个有错误的字符串(Search for next string with error)
...
阅读全文 >
IDA pro跳转到指定的段(Jump to the specified segment)
...
阅读全文 >
IDA pro生成流程图GDL文件(Produce flow chart GDL file)
...
阅读全文 >