English 中文(简体)
国际开发协会的组装未能“从目前地点到达目的地”
原标题:IDA assembly patching fails with "cannot reach destination from current location"

I m a newbie in IDA (andvert Engineering).

I m试图在电梯和电梯中采用“配对”办法,但因我无法理解的错误而失败。

我目前的行文是“jnz short func”(在I func上改名为“jmp short func”,而我试图将其改为“jmp short func”,但当我点大韩民国时,我拿到一个电文箱:“不能从现在的地点到达目的地”。

任何人都不能解释 这意味着什么,为什么要发挥作用? 我试图寻找大家,我找不到任何答案!

I must also add that I m doing this as part of an IDA tutorial I found (in tut4you.com).

我再次感谢你们的帮助,真的 st不,。

问题回答

"jnz short func" and "jmp short func" instructions doesn t have the same number of bytes..Try to keep code alignment with the original code.. Also jnz, jz, ja,..(conditional jumps) don t work with far pointers (i.e. intersegment).. but only jmp..





相关问题
Installing scripts on IDA Pro

Around the net I ve seen reference to "scripts" for IDA Pro, but can t work out how to load or install them for IDA Pro 4.9 Freeware Version. How do I do this? In particular I wish to use PE Scripts.

Disassembling with python - no easy solution?

I m trying to create a python script that will disassemble a binary (a Windows exe to be precise) and analyze its code. I need the ability to take a certain buffer, and extract some sort of struct ...

Decompiling x86 PE binary to C?

I d like to know if there s any way to generate the C code of a x86 PE binary. I don t really need this, I just want to learn how some closed-source software are working. From my common sense, I think ...

Best/Easiest Language To Work With Disassembling

I m now thinking to develop a disassembler, but as I know that it s very hard to build a disassembler I want to know the best/easiest language to turn my dream into a reality, also, a tutorial ...

Making a simple assembly emulator

I am working on project that is detecting unknown Viruses, so I am going to build my small emulator that emulates the assembly code of the executable so I can detect whether it is a virus or not by ...

tell gdb to disassemble "unknown" code

is it possible to configure gdb in order to debug assembly code when there are no debug symbols or no sources available ? I mean showing assembly instruction by assembly instruction when performing a ...

热门标签