Jump to content
Tuts 4 You

meaning of instruction call $+5 in IDA Disassembly


abhijit mohanta

Recommended Posts

I suppose it calls the instruction 5 bytes after the call instruction.

($ being the address of the next instruction after the CALL)

e.g.

0x400000: CALL $+5 ; = CALL 40000A (address of CALL + size of CALL instruction[=5] + 5 = 10 [A in hex])

0x400005:

0x40000A:

CALL $+0 would call 400005

Edited by Killboy
no maths skills :x
Link to comment

I don't know with IDA, but in MASM if you use the '$' operator, it is the offset of the instruction that you use it with, not the following instruction.

call $+5assembles to:00401000 $  E8 00000000       CALL 00401005

Which could be used with stuff such as code-flow obfuscation or gaining a delta value to offset references with (GetDelta offset independant code), just two examples.

HR,

Ghandi

Edited by ghandi
Link to comment
  • 6 months later...

In IDA, $ is beginning of same instruction (which is not the EIP which would point to the next instruction).

CALL $+5 is probably call to next instruction

x86 assembly

(based off of EIP, not IDA's $ for beginning of same instruction).

CALL near (rel32)

E8 xxxxxxxx (5 bytes)

For details, read the intel or amd manuals.

Edited by Ressa
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...