BanMe
September 6th, 2009, 23:52
hello skiygin,
it's hard to say what that line of particular code 'really' means, without knowing the context of the application code it is run in..but I can extrapolate some meaning out of it...
EBP 'usually' equals stack pointer(ESP).
This is done in the 'Preamble' of a function..
some common 'preamble' code..
Code:
push ebp
mov ebp,esp
so 'knowing' this small bit we can apply it to the supplied code
mov dword ptr [ebp-0xc],0x000000eb this says move the value 0x000000eb to address in ebp minus 0xc..
BanMe